New files from unstable branch
[fa-stable.git] / applications / manufacturing.php
index 6892ecc290c4ac5a64e26946f0657438a42131ea..3c9c861fcd685f25270e7de0340b2cbc209dd0dd 100644 (file)
@@ -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();
        }
 }