-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_localconf.php
More file actions
62 lines (52 loc) · 1.11 KB
/
ext_localconf.php
File metadata and controls
62 lines (52 loc) · 1.11 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
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
/**
* Esta extension configura varios plugins
*/
// TODO hacer que las acciones sean cacheables
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY,
'Feed',
array(
'Contentce' => 'feed,flickr',
),
array(
'Contentce' => 'feed,flickr',
)
);
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY,
'Gmaps',
array(
'Contentce' => 'gmaps',
),
array(
'Contentce' => 'gmaps',
)
);
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY,
'Video',
array(
'Contentce' => 'vimeo,youtube',
),
array(
'Contentce' => 'vimeo,youtube',
)
);
Tx_Extbase_Utility_Extension::configurePlugin(
$_EXTKEY,
'Gallery',
array(
'Contentce' => 'cycleGallery',
),
array(
'Contentce' => 'cycleGallery',
)
);
// Preview del plugin en la vista de lista
if (TYPO3_MODE == 'BE') {
// Hook for the TV page module used for preview of content
$TYPO3_CONF_VARS['EXTCONF']['templavoila']['mod1']['renderPreviewContentClass']['f2contentce_bepreview'] = 'EXT:f2contentce/Classes/Util/class.tx_f2contentce_bepreview.php:tx_f2contentce_bepreview';
}
?>