X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Fhooks.inc;h=85b7ae93544ada5e3cda343d8464ebee5d692d49;hb=bca406d61d1f94c5dcefdbad041b3e0bf77a2919;hp=63e1684ce853f990eef9ca71866da04d5ee384d1;hpb=7ad222595e84451daea8aaa06c83d817cc3c774c;p=fa-stable.git diff --git a/includes/hooks.inc b/includes/hooks.inc index 63e1684c..85b7ae93 100644 --- a/includes/hooks.inc +++ b/includes/hooks.inc @@ -18,9 +18,9 @@ // // To find how various hooks are processed look into respective hook_* functions below. // -class hooks extends \stdClass { +class hooks { var $module_name; // extension module name. - + var $path = null; // // Helper for updating databases with extension scheme // @@ -234,6 +234,7 @@ function install_hooks($lang_code=null) $code = $lang_code; $hook_class = 'hooks_'.$code; $Hooks[$code] = new $hook_class; + $Hooks[$code]->path = "/lang/" . $lang_code . "/locale.inc"; unset($code, $hook_class); } // install hooks provided by active extensions