-
Notifications
You must be signed in to change notification settings - Fork 32
/
metadata.php
71 lines (69 loc) · 2.67 KB
/
metadata.php
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
<?php
/**
* OXID_Module_TOXID
*
* PHP version 5
*
* @category TOXID
* @package TOXID
* @author Joscha Krug <support@marmalade.de>
* @license MIT License http://www.opensource.org/licenses/mit-license.html
* @version 2.0
* @link http://toxid.org
* @link https://github.com/jkrug/TOXID-cURL
*/
/**
* Metadata version
*/
$sMetadataVersion = '1.1';
$aModule = array(
'id' => 'toxid_curl',
'title' => 'marmalade :: TOXID cURL',
'description' => array(
'de' => 'Integriert CMS-Inhalte in OXID eShop',
'en' => 'Renders pages form CMS and navigation in OXID.',
),
'email' => 'support@marmalade.de',
'url' => 'http://www.marmalade.de',
'thumbnail' => 'toxid.jpg',
'version' => '2.3.3',
'author' => 'marmalade GmbH :: Joscha Krug',
'extend' => array(
'oxseodecoder' => 'toxid_curl/core/toxid_curl_oxseodecoder',
'oxviewconfig' => 'toxid_curl/core/toxid_curl_oxviewconfig',
'oxutilsview' => 'toxid_curl/core/toxid_curl_oxutilsview'
),
'templates' => array(
'toxid_curl.tpl' => 'toxid_curl/views/azure/toxid_curl.tpl',
'product.tpl' => 'toxid_curl/views/azure/product.tpl',
'toxid_setup_main.tpl' => 'toxid_curl/views/admin/tpl/toxid_setup_main.tpl',
'toxid_content_widget.tpl' => 'toxid_curl/views/widgets/toxid_content_widget.tpl',
),
'blocks' => array(
array(
'template' => '_formparams.tpl',
'block'=>'admin_formparams',
'file'=>'/views/admin/blocks/_formparams_admin_formparams.tpl'
),
),
'files' => array(
'toxid_curl' => 'toxid_curl/controller/toxid_curl.php',
'toxidcurl' => 'toxid_curl/core/toxidcurl.php',
'toxid_setup' => 'toxid_curl/controller/admin/toxid_setup.php',
'toxid_setup_main' => 'toxid_curl/controller/admin/toxid_setup_main.php',
'toxid_setup_list' => 'toxid_curl/controller/admin/toxid_setup_list.php',
'toxid_curl_events' => 'toxid_curl/core/toxid_curl_events.php',
'toxid_curl_smarty_parser' => 'toxid_curl/core/facades/toxid_curl_smarty_parser.php',
'toxid_curl_content_widget' => 'toxid_curl/widgets/toxid_curl_content_widget.php',
),
'settings' => array(
array(
'group' => 'toxid_config_not_here',
'name' => 'noConfigHere',
),
),
'events' => array(
'onActivate' => 'toxid_curl_events::onActivate',
'onDeactivate' => 'toxid_curl_events::onDeactivate'
)
);