-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmetadata.php
More file actions
executable file
·55 lines (53 loc) · 3.37 KB
/
metadata.php
File metadata and controls
executable file
·55 lines (53 loc) · 3.37 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
<?php
/**
* @package oxcom_adminsearch
* @category OXID Module
* @license MIT License http://opensource.org/licenses/MIT
* @link https://github.com/OXIDprojects/adminsearch
* @version 1.0.3
*/
/**
* Metadata version
*/
$sMetadataVersion = '2.0';
/**
* Module information
*/
$aModule = [
'id' => 'oxcom_adminsearch',
'title' => 'OXID Community Adminsuche',
'description' => [
'de' => 'Globale Suche im Shop-Admin',
'en' => 'Global search shop admin'
],
'version' => '1.3.1',
'author' => 'OXID Community',
'url' => 'https://github.com/OXIDprojects/adminsearch',
'extend' => [
\OxidEsales\Eshop\Application\Controller\Admin\NavigationController::class => \OxidCommunity\AdminSearch\Controller\Admin\NavigationController::class,
],
'controllers' => [],
'templates' => [],
'blocks' => [
['template' => 'navigation.tpl', 'block' => 'admin_navigation_menustructure', 'file' => '/views/blocks/admin_navigation_menustructure.tpl'],
],
'settings' => [
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowArticles', 'type' => 'bool', 'value' => true],
['group' => 'oxcom_adminsearch_main', 'name' => 'aOxComAdminSearchArticleFields', 'type' => 'arr', 'value' => ['oxartnum', 'oxtitle', 'oxvarselect']],
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowCategories', 'type' => 'bool', 'value' => true],
['group' => 'oxcom_adminsearch_main', 'name' => 'aOxComAdminSearchCategoryFields', 'type' => 'arr', 'value' => ['oxtitle']],
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowCmsPages', 'type' => 'bool', 'value' => true],
['group' => 'oxcom_adminsearch_main', 'name' => 'aOxComAdminSearchCmsPageFields', 'type' => 'arr', 'value' => ['oxtitle']],
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowOrders', 'type' => 'bool', 'value' => true],
['group' => 'oxcom_adminsearch_main', 'name' => 'aOxComAdminSearchOrderFields', 'type' => 'arr', 'value' => ['oxordernr', 'oxbillfname', 'oxbilllname', 'oxbillemail', 'oxtrackcode', 'oxremark']],
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowUsers', 'type' => 'bool', 'value' => true],
['group' => 'oxcom_adminsearch_main', 'name' => 'aOxComAdminSearchUserFields', 'type' => 'arr', 'value' => ['oxcustnr', 'oxfname', 'oxlname', 'oxusername', 'oxzip']],
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowCompanies', 'type' => 'bool', 'value' => true],
['group' => 'oxcom_adminsearch_main', 'name' => 'aOxComAdminSearchCompanyFields', 'type' => 'arr', 'value' => ['oxcompany']],
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowVendors', 'type' => 'bool', 'value' => true],
['group' => 'oxcom_adminsearch_main', 'name' => 'aOxComAdminSearchVendorFields', 'type' => 'arr', 'value' => ['oxtitle']],
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowManufacturers', 'type' => 'bool', 'value' => true],
['group' => 'oxcom_adminsearch_main', 'name' => 'aOxComAdminSearchManufacturerFields', 'type' => 'arr', 'value' => ['oxtitle']],
['group' => 'oxcom_adminsearch_main', 'name' => 'blOxComAdminSearchShowModules', 'type' => 'bool', 'value' => true],
],
];