X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=applications%2Fcustomers.php;h=d99e8fbbb562d6d017a2302000419fa16b1fca82;hb=181cd75a7b027c398cc382974bc9f97cba8c48b3;hp=1a385b9ef4d285224554d9dad07163311b4549ab;hpb=d2cc0860eccf02eaefcd90731ac3af141a841529;p=fa-stable.git diff --git a/applications/customers.php b/applications/customers.php index 1a385b9e..d99e8fbb 100644 --- a/applications/customers.php +++ b/applications/customers.php @@ -13,7 +13,6 @@ class customers_app extends application { function customers_app() { - global $installed_extensions; $this->application("orders", _($this->help_context = "&Sales")); $this->add_module(_("Transactions")); @@ -76,16 +75,8 @@ class customers_app extends application "sales/manage/sales_areas.php?", 'SA_SALESAREA'); $this->add_rapp_function(2, _("Credit &Status Setup"), "sales/manage/credit_status.php?", 'SA_CRSTATUS'); - if (count($installed_extensions) > 0) - { - foreach ($installed_extensions as $mod) - { - if (@$mod['active'] && $mod['type'] == 'plugin' && $mod["tab"] == "orders") - $this->add_rapp_function(2, $mod["title"], - "modules/".$mod["path"]."/".$mod["filename"]."?", - isset($mod["access"]) ? $mod["access"] : 'SA_OPEN' ); - } - } + + $this->add_extensions(); } }