-
Notifications
You must be signed in to change notification settings - Fork 4
/
ext_localconf.php
executable file
·20 lines (14 loc) · 1.04 KB
/
ext_localconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
$GLOBALS['TYPO3_CONF_VARS']['EXT']['news']['classes']['Domain/Model/News'][] = 'amt_feed_importer';
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks']['AMT\\AmtFeedImporter\\Task\\RSS2ImportTask'] = array(
'extension' => $_EXTKEY,
'title' => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang.xlf:amt_feed_importer.rss2_task.name',
'description' => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang.xlf:amt_feed_importer.rss2_task.description',
'additionalFields' => 'AMT\\AmtFeedImporter\\Task\\RSS2FeedAdditionalFieldProvider'
);
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['scheduler']['tasks']['AMT\\AmtFeedImporter\\Task\\AtomImportTask'] = array(
'extension' => $_EXTKEY,
'title' => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang.xlf:amt_feed_importer.atom_task.name',
'description' => 'LLL:EXT:' . $_EXTKEY . '/Resources/Private/Language/locallang.xlf:amt_feed_importer.atom_task.description',
'additionalFields' => 'AMT\\AmtFeedImporter\\Task\\AtomFeedAdditionalFieldProvider'
);