-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathServices.yaml
More file actions
77 lines (70 loc) · 3.4 KB
/
Copy pathServices.yaml
File metadata and controls
77 lines (70 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# yamllint disable rule:line-length
---
parameters:
xima_typo3_dashboard_news.widgets.news.options:
allowedPageUids: [0,21] # 0: root page (admins only), empty: all pages allowed
maxCharacters: 400
xima_typo3_dashboard_news.widgets.feed.options:
feedUrl: 'https://typo3.com/blog/blog.recent.xml'
maxCharacters: 200
xima_typo3_dashboard_news.widgets.welcome.options:
manualUrl: ''
services:
_defaults:
autowire: true
autoconfigure: true
public: false
Xima\XimaTypo3DashboardNews\:
resource: '../Classes/*'
Xima\XimaTypo3DashboardNews\Widgets\Provider\DashboardNewsAddButtonProvider:
class: 'Xima\XimaTypo3DashboardNews\Widgets\Provider\DashboardNewsAddButtonProvider'
arguments:
$options: '%xima_typo3_dashboard_news.widgets.news.options%'
Xima\XimaTypo3DashboardNews\Widgets\Provider\DashboardNewsListButtonProvider:
class: 'Xima\XimaTypo3DashboardNews\Widgets\Provider\DashboardNewsListButtonProvider'
arguments:
$options: '%xima_typo3_dashboard_news.widgets.news.options%'
Xima\XimaTypo3DashboardNews\Widgets\News:
class: 'Xima\XimaTypo3DashboardNews\Widgets\News'
arguments:
$dataProvider: '@Xima\XimaTypo3DashboardNews\Widgets\Provider\DashboardNewsDataProvider'
$buttonProvider: '@Xima\XimaTypo3DashboardNews\Widgets\Provider\DashboardNewsAddButtonProvider'
$listButtonProvider: '@Xima\XimaTypo3DashboardNews\Widgets\Provider\DashboardNewsListButtonProvider'
$options: '%xima_typo3_dashboard_news.widgets.news.options%'
tags:
- name: dashboard.widget
identifier: 'tx_ximatypo3dashboardnews_news'
groupNames: 'news'
title: 'LLL:EXT:xima_typo3_dashboard_news/Resources/Private/Language/locallang.xlf:widgets.news.title'
description: 'LLL:EXT:xima_typo3_dashboard_news/Resources/Private/Language/locallang.xlf:widgets.news.description'
iconIdentifier: 'dashboard-news-widgets-news'
width: 'small'
height: 'medium'
Xima\XimaTypo3DashboardNews\Widgets\Feed:
class: 'Xima\XimaTypo3DashboardNews\Widgets\Feed'
arguments:
$dataProvider: '@Xima\XimaTypo3DashboardNews\Widgets\Provider\RssFeedDataProvider'
$options: '%xima_typo3_dashboard_news.widgets.feed.options%'
tags:
- name: dashboard.widget
identifier: 'tx_ximatypo3dashboardnews_feed'
groupNames: 'news'
title: 'LLL:EXT:xima_typo3_dashboard_news/Resources/Private/Language/locallang.xlf:widgets.feed.title'
description: 'LLL:EXT:xima_typo3_dashboard_news/Resources/Private/Language/locallang.xlf:widgets.feed.description'
iconIdentifier: 'dashboard-news-widgets-feed'
width: 'small'
height: 'medium'
Xima\XimaTypo3DashboardNews\Widgets\Welcome:
class: 'Xima\XimaTypo3DashboardNews\Widgets\Welcome'
arguments:
$dataProvider: '@Xima\XimaTypo3DashboardNews\Widgets\Provider\WelcomeDataProvider'
$options: '%xima_typo3_dashboard_news.widgets.welcome.options%'
tags:
- name: dashboard.widget
identifier: 'tx_ximatypo3dashboardnews_welcome'
groupNames: 'general'
title: 'LLL:EXT:xima_typo3_dashboard_news/Resources/Private/Language/locallang.xlf:widgets.welcome.title'
description: 'LLL:EXT:xima_typo3_dashboard_news/Resources/Private/Language/locallang.xlf:widgets.welcome.description'
iconIdentifier: 'dashboard-news-widgets-welcome'
width: 'small'
height: 'medium'