Jump to content
xt:Commerce Community Forum

How To - xtCommerce Plugin Hooks - Programiierung


dragon_0000

Recommended Posts

da ich immer wieder in den Plugins sogar bei den "big players" wie xt:C BUI und shopX staune ich immer wieder wie schlecht programmiert wird hier mal ein kurzer Code wie man Hooks gut uns sicher in der installer XML einbindet.


<code>
<hook>page_registry.php:bottom</hook>
<phpcode><![CDATA[
$plugin_activ = isset($xtPlugin->active_modules['bui_watchlist']);
$shop_plugin_activ = (ACTIVATE_BUI_WATCHLIST == 'true' ? true: false);
$hook_code = _SRV_WEBROOT._SRV_WEB_PLUGINS.'bui_watchlist/hooks/page_registry.phpbottom.php';
if ($plugin_activ && $shop_plugin_activ ){
if( file_exists($hook_code) ){
require( $hook_code );
}else{
//Todo deaktivate hook add log entry
if(_SYSTEM_DEBUG == "true")
echo "hook is buggy".$hook_code;
}
}
]]></phpcode>
<order>1</order>
<active>1</active>
</code>
[/PHP]

kurze Erklärung:

  1. Plugin muss aktiviert sein (Abhängigkeiten zu anderen erforderlichen Plugins kann man somit auch abfragen)
  2. Plugin muss für den Shop aktiviert sein (Plugin Configuration)
  3. der hook code muss existieren und ist in ext. php ausgelagert
Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...