dragon_0000 Posted April 21, 2014 Report Share Posted April 21, 2014 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: Plugin muss aktiviert sein (Abhängigkeiten zu anderen erforderlichen Plugins kann man somit auch abfragen)Plugin muss für den Shop aktiviert sein (Plugin Configuration)der hook code muss existieren und ist in ext. php ausgelagert Link to comment Share on other sites More sharing options...
mzanier Posted April 22, 2014 Report Share Posted April 22, 2014 wobei die abfrage ob das plugin aktiv ist hier überflüssig ist, denn der hook wird gar nicht geladen wenn plugin inaktiv ist. Link to comment Share on other sites More sharing options...
dragon_0000 Posted April 22, 2014 Author Report Share Posted April 22, 2014 In einigen 4.0.x Versionen kam mir das nicht so vor. Link to comment Share on other sites More sharing options...
Alex@4tfm Posted April 22, 2014 Report Share Posted April 22, 2014 In einigen 4.0.x Versionen kam mir das nicht so vor. vor Urzeiten ( bis 4.0.11 oder so) gab es hier in der tat mal ein Problem meine ich mich erinnern zu können Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.