Skip to content

Commit

Permalink
Added eShop 4.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
acirtautas committed Oct 31, 2012
1 parent bb29e1b commit 191982e
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.idea
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,22 @@

'tbclmodule_internals_metadata' => 'Metadata',
'tbclmodule_internals_health' => 'Health',
'tbclmodule_internals_utils' => 'Utilities',
'tbclmodule_internals_utils' => 'Utils',

'AC_MI_VERSION' => 'Version',
'AC_MI_EXTEND' => 'Extended Classes',
'AC_MI_FILES' => 'Files',
'AC_MI_BLOCKS' => 'Template Blocks',
'AC_MI_TEMPLATES' => 'Templates',
'AC_MI_SETTINGS' => 'Settings',
'AC_MI_EVENTS' => 'Events',
'AC_MI_CACHE' => 'Module cache',
'AC_MI_VERSION' => 'Version',
'AC_MI_EXTEND' => 'Extended Classes',
'AC_MI_FILES' => 'Files',
'AC_MI_BLOCKS' => 'Template Blocks',
'AC_MI_TEMPLATES' => 'Templates',
'AC_MI_SETTINGS' => 'Settings',
'AC_MI_EVENTS' => 'Events',
'AC_MI_CACHE' => 'Module cache',
'AC_MI_ACTIVATION' => 'Module Activation / Deactivation',

'AC_MI_FIXBTN' => 'Fix',
'AC_MI_RESETBTN' => 'Reset',
'AC_MI_FIXBTN' => 'Fix',
'AC_MI_RESETBTN' => 'Reset',
'AC_MI_ACTIVATEBTN' => 'Activate',
'AC_MI_DEACTIVATEBTN' => 'Deactivate',

'AC_LEGEND' => 'Legend',
'AC_STATE_OK' => 'OK',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@
}
</script>

<div>
<h3>[{oxmultilang ident="AC_MI_ACTIVATION"}]</h3>
[{if $blIsActive }]
<button [{if $oxid == 'ac_module_internals'}]disabled[{/if}] onclick="module_internals_fix('deactivate_module')">[{oxmultilang ident="AC_MI_DEACTIVATEBTN"}]</button>
[{else}]
<button [{if $oxid == 'ac_module_internals'}]disabled[{/if}] onclick="module_internals_fix('activate_module')">[{oxmultilang ident="AC_MI_ACTIVATEBTN"}]</button>
[{/if}]
</div>

<div>
<h3>[{oxmultilang ident="AC_MI_CACHE"}]</h3>
<button onclick="module_internals_fix('reset_cache')">[{oxmultilang ident="AC_MI_RESETBTN"}]</button>
Expand Down

0 comments on commit 191982e

Please sign in to comment.