X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=applications%2Fsetup.php;h=1bc46c461c76c42ea04e0a28e9afa77ac811f6d9;hb=8e3f71a8644277f3a88694998b462d868a55978d;hp=e8b3403172da82056af0eafc63ac397dafad14f4;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/applications/setup.php b/applications/setup.php index e8b34031..1bc46c46 100644 --- a/applications/setup.php +++ b/applications/setup.php @@ -1,9 +1,11 @@ application("system",_("Setup")); $this->add_module(_("Company Setup")); @@ -28,6 +30,15 @@ $this->add_rapp_function(2, _("Backup and Restore"),"admin/backups.php?", 15); $this->add_rapp_function(2, _("Create/Update Companies"),"admin/create_coy.php?", 14); $this->add_rapp_function(2, _("Install/Update Languages"),"admin/inst_lang.php?", 14); + $this->add_rapp_function(2, _("Install/Update Modules"),"admin/inst_module.php?", 15); + if (count($installed_modules) > 0) + { + foreach ($installed_modules as $mod) + { + if ($mod["tab"] == "system") + $this->add_rapp_function(2, $mod["name"], "modules/".$mod["path"]."/".$mod["filename"]."?"); + } + } } }