X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Faccess_levels.inc;h=7ea510a621a827188c51a1e568ce9e5c792d19bb;hb=5089910120614dfb8b76a0271b43739f90f38b01;hp=ee7288602494b17fb9367aa9f94d130da7480792;hpb=749eba79a95008edf017d7d6381779fd46d91308;p=fa-stable.git diff --git a/includes/access_levels.inc b/includes/access_levels.inc index ee728860..7ea510a6 100644 --- a/includes/access_levels.inc +++ b/includes/access_levels.inc @@ -260,9 +260,11 @@ function add_access_extensions() global $security_areas, $security_sections, $installed_extensions; foreach($installed_extensions as $extid => $ext) { + $accext = hook_invoke($ext['package'], 'install_access', $dummy); + if ($accext == null) continue; + $scode = 100; $acode = 100; - $accext = get_access_extensions($extid); $extsections = $accext[1]; $extareas = $accext[0]; $extcode = $extid<<16; @@ -293,6 +295,7 @@ function add_access_extensions() /* Helper function to retrieve extension access definitions in isolated environment. */ +/* function get_access_extensions($id) { global $path_to_root, $installed_extensions; @@ -301,9 +304,9 @@ function get_access_extensions($id) { $security_sections = $security_areas = array(); if (isset($ext['acc_file'])) - include($path_to_root.'/'.$ext['path'].'/'.$ext['acc_file']); + include_once($path_to_root.'/'.$ext['path'].'/'.$ext['acc_file']); return array($security_areas, $security_sections); } - +*/ ?> \ No newline at end of file