Skip to content

Commit

Permalink
fix tpl path
Browse files Browse the repository at this point in the history
  • Loading branch information
tabsl authored Dec 15, 2017
1 parent fc34635 commit 6085bf6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions metadata.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
$aModule = [
'id' => 'moduleinternals',
'title' => [
'de' => 'OXID Community module internals (by Alfonsas Cirtautas)',
'en' => 'OXID Community module internals (by Alfonsas Cirtautas)',
'de' => 'OXID Community Module Internals (by Alfonsas Cirtautas)',
'en' => 'OXID Community Module Internals (by Alfonsas Cirtautas)',
],
'description' => [
'en' => 'Internal OXID eShop module system information and troubleshooting tools (V6).',
Expand All @@ -27,17 +27,17 @@
'url' => 'https://github.com/OXIDprojects/oxid-module-internals',
'email' => '',
'extend' => [
OxidEsales\Eshop\Core\Module\Module::class => OxidCommunity\ModuleInternals\Core\Module::class,
\OxidEsales\Eshop\Core\Module\Module::class => \OxidCommunity\ModuleInternals\Core\Module::class,
],
'controllers' => [
'module_internals_metadata' => OxidCommunity\ModuleInternals\Controller\Admin\Metadata::class,
'module_internals_state' => OxidCommunity\ModuleInternals\Controller\Admin\State::class,
'module_internals_utils' => OxidCommunity\ModuleInternals\Controller\Admin\Utils::class,
'module_internals_metadata' => \OxidCommunity\ModuleInternals\Controller\Admin\Metadata::class,
'module_internals_state' => \OxidCommunity\ModuleInternals\Controller\Admin\State::class,
'module_internals_utils' => \OxidCommunity\ModuleInternals\Controller\Admin\Utils::class,
],
'templates' => [
'metadata.tpl' => 'OxidCommunity/moduleinternals/views/admin/tpl/metadata.tpl',
'state.tpl' => 'OxidCommunity/moduleinternals/views/admin/tpl/state.tpl',
'utils.tpl' => 'OxidCommunity/moduleinternals/views/admin/tpl/utils.tpl',
'metadata.tpl' => 'oxcom/moduleinternals/views/admin/tpl/metadata.tpl',
'state.tpl' => 'oxcom/moduleinternals/views/admin/tpl/state.tpl',
'utils.tpl' => 'oxcom/moduleinternals/views/admin/tpl/utils.tpl',
],
];

Expand Down

0 comments on commit 6085bf6

Please sign in to comment.