System setup re-read after upgrade.
[fa-stable.git] / applications / dimensions.php
index 3a1cca71b1650cccda2ba36fba0ffbf9d9e03dc1..bf46ef8d53284c3f5dbb2f2051d9253ea5a271eb 100644 (file)
@@ -15,7 +15,7 @@ class dimensions_app extends application
        {
                global $installed_extensions;
                $dim = get_company_pref('use_dimension');
-               $this->application("proj",_("&Dimensions"), $dim);
+               $this->application("proj", _($this->help_context = "&Dimensions"), $dim);
 
                if ($dim > 0)
                {
@@ -31,15 +31,17 @@ class dimensions_app extends application
 
                        $this->add_rapp_function(1, _("Dimension &Reports"),
                                "reporting/reports_main.php?Class=4", 'SA_DIMENSIONREP');
+                       
+                       $this->add_module(_("Maintenance"));
+                       $this->add_lapp_function(2, _("Dimension &Tags"),
+                               "admin/tags.php?type=dimension", 'SA_DIMTAGS');
+                               
                        if (count($installed_extensions) > 0)
                        {
-                               $i = 0;
                                foreach ($installed_extensions as $mod)
                                {
                                        if (@$mod['active'] && $mod['type'] == 'plugin' && $mod["tab"] == "proj")
                                        {
-                                               if ($i++ == 0)
-                                                       $this->add_module(_("Maintenance"));
                                                $this->add_rapp_function(2, $mod["title"], 
                                                        "modules/".$mod["path"]."/".$mod["filename"]."?",
                                                        isset($mod["access"]) ? $mod["access"] : 'SA_OPEN' );