X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=applications%2Finventory.php;h=b5b32f53e285c7967b0d4db021613235f9507375;hb=70c2dbcf463a5d500d15b8510c7f45e527a7fa53;hp=feb820bad12e4bd4c46218cc9d72caec181bc620;hpb=d2cc0860eccf02eaefcd90731ac3af141a841529;p=fa-stable.git diff --git a/applications/inventory.php b/applications/inventory.php index feb820ba..b5b32f53 100644 --- a/applications/inventory.php +++ b/applications/inventory.php @@ -1,19 +1,18 @@ . ***********************************************************************/ -class inventory_app extends application +class inventory_app extends application { - function inventory_app() + function inventory_app() { - global $installed_extensions; $this->application("stock", _($this->help_context = "&Items and Inventory")); $this->add_module(_("Transactions")); @@ -55,16 +54,8 @@ class inventory_app extends application "inventory/purchasing_data.php?", 'SA_PURCHASEPRICING'); $this->add_rapp_function(3, _("Standard &Costs"), "inventory/cost_update.php?", 'SA_STANDARDCOST'); - if (count($installed_extensions) > 0) - { - foreach ($installed_extensions as $mod) - { - if (@$mod['active'] && $mod['type'] == 'plugin' && $mod["tab"] == "stock") - $this->add_rapp_function(2, $mod["title"], - "modules/".$mod["path"]."/".$mod["filename"]."?", - isset($mod["access"]) ? $mod["access"] : 'SA_OPEN' ); - } - } + + $this->add_extensions(); } }