X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=themes%2Fdefault%2Frenderer.php;h=e32cbb46876460cd79495dce09593d8a09bfbaa1;hb=0489317205141deaecefe3a7243d11a3e38a51d0;hp=08d015abf77720543ab536995768f780b45cff2f;hpb=d5ec96e90a4bdcecc7423ca407724415817cb372;p=fa-stable.git diff --git a/themes/default/renderer.php b/themes/default/renderer.php index 08d015ab..e32cbb46 100644 --- a/themes/default/renderer.php +++ b/themes/default/renderer.php @@ -35,7 +35,7 @@ function menu_header($title, $no_menu, $is_index) { - global $path_to_root, $help_base_url, $db_connections, $show_inaccessible_menu_items; + global $path_to_root, $help_base_url, $db_connections; echo "\n"; echo "\n"; echo ""; @@ -169,7 +169,7 @@ { echo $img.menu_link($appfunction->link, $appfunction->label)."
\n"; } - elseif (!$this->hide_inaccessible_menu_items()) + elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items()) { echo $img.'' .access_string($appfunction->label, true) @@ -189,7 +189,7 @@ { echo $img.menu_link($appfunction->link, $appfunction->label)."
\n"; } - elseif (!$this->hide_inaccessible_menu_items()) + elseif (!$_SESSION["wa_current_user"]->hide_inaccessible_menu_items()) { echo $img.'' .access_string($appfunction->label, true) @@ -203,74 +203,6 @@ } echo "
\n"; @@ -57,7 +57,7 @@ echo "
"; } - - function check_application_access($waapp) - { - if (!$this->hide_inaccessible_menu_items()) - { - return true; - } - - foreach ($waapp->modules as $module) - { - if ($this->check_module_access($module)) - { - return true; - } - } - - return false; - - } - - function check_module_access($module) - { - - if (!$this->hide_inaccessible_menu_items()) - { - return true; - } - - if (sizeof($module->lappfunctions) > 0) - { - foreach ($module->lappfunctions as $appfunction) - { - if ($appfunction->label != "" && $_SESSION["wa_current_user"]->can_access_page($appfunction->access)) - { - return true; - } - } - } - - if (sizeof($module->rappfunctions) > 0) - { - foreach ($module->rappfunctions as $appfunction) - { - if ($appfunction->label != "" && $_SESSION["wa_current_user"]->can_access_page($appfunction->access)) - { - return true; - } - } - } - - return false; - - } - - function hide_inaccessible_menu_items() - { - global $hide_inaccessible_menu_items; - - if (!isset($hide_inaccessible_menu_items) || $hide_inaccessible_menu_items == 0) - { - return false; - } - - else - { - return true; - } - } }