X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=applications%2Fmanufacturing.php;h=3c9c861fcd685f25270e7de0340b2cbc209dd0dd;hb=46c5f7a65a7659a44ae8254c63152074363d3987;hp=6892ecc290c4ac5a64e26946f0657438a42131ea;hpb=35f482e2a9246960de37e5f1d975c734e08951e6;p=fa-stable.git diff --git a/applications/manufacturing.php b/applications/manufacturing.php index 6892ecc2..3c9c861f 100644 --- a/applications/manufacturing.php +++ b/applications/manufacturing.php @@ -13,7 +13,6 @@ class manufacturing_app extends application { function manufacturing_app() { - global $installed_extensions; $this->application("manuf", _($this->help_context = "&Manufacturing")); $this->add_module(_("Transactions")); @@ -37,16 +36,8 @@ class manufacturing_app extends application "manufacturing/manage/bom_edit.php?", 'SA_BOM'); $this->add_lapp_function(2, _("&Work Centres"), "manufacturing/manage/work_centres.php?", 'SA_WORKCENTRES'); - if (count($installed_extensions) > 0) - { - foreach ($installed_extensions as $mod) - { - if (@$mod['active'] && $mod['type'] == 'plugin' && $mod["tab"] == "manuf") - $this->add_rapp_function(2, $mod["title"], - "modules/".$mod["path"]."/".$mod["filename"]."?", - isset($mod["access"]) ? $mod["access"] : 'SA_OPEN' ); - } - } + + $this->add_extensions(); } }