-
Notifications
You must be signed in to change notification settings - Fork 14
/
metadata.php
executable file
·38 lines (35 loc) · 1.06 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
<?php
/**
* Copyright © OXID eSales AG. All rights reserved.
* See LICENSE file for license details.
*/
use OxidEsales\Eshop\Application\Controller\TextEditorHandler;
use OxidEsales\WysiwygModule\Service\ModuleSettings;
/**
* Metadata version
*/
$sMetadataVersion = '2.1';
/**
* Module information
*/
$aModule = [
'id' => 'ddoewysiwyg',
'title' => 'Summernote WYSIWYG Editor for OXID eShop',
'description' => [
'de' => '',
'en' => '',
],
'thumbnail' => 'logo.png',
'version' => '4.2.0',
'author' => 'OXID eSales AG & digidesk - media solutions',
'url' => 'https://www.oxid-esales.com',
'email' => '[email protected]',
'extend' => [
// Admin Controller
TextEditorHandler::class => \OxidEsales\WysiwygModule\Application\Controller\TextEditorHandler::class,
],
'events' => [
'onActivate' => '\OxidEsales\WysiwygModule\Core\Events::onActivate',
'onDeactivate' => '\OxidEsales\WysiwygModule\Core\Events::onDeactivate'
],
];