Release 1.1. Enabled module addons and all the below bugfixes. No changes in database...
[fa-stable.git] / applications / dimensions.php
index 304df321cfdcd4d8105be7467a7fa63ad1d33a00..0d26953b45aac140c21a16989db921e0de79395c 100644 (file)
@@ -1,25 +1,40 @@
-<?php\r
-\r
-       class dimensions_app extends application \r
-       {\r
-               function dimensions_app() \r
-               {\r
-                       $dim = get_company_pref('use_dimension');\r
-                       $this->application("proj",_("Dimensions"));\r
-\r
-                       if ($dim > 0)\r
-                       {\r
-                               $this->add_module(_("Transactions"));\r
-                               $this->add_lapp_function(0, _("Dimension Entry"),"dimensions/dimension_entry.php?");\r
-                               $this->add_lapp_function(0, _("Outstanding Dimensions"),"dimensions/inquiry/search_dimensions.php?OutstandingOnly=1");\r
-\r
-                               $this->add_module(_("Inquiries and Reports"));\r
-                               $this->add_lapp_function(1, _("Dimension Inquiry"),"dimensions/inquiry/search_dimensions.php?");\r
-\r
-                               $this->add_rapp_function(1, _("Dimension Reports"),"reporting/reports_main.php?Class=4");\r
-                       }\r
-               }\r
-       }\r
-\r
-\r
+<?php
+
+       include_once("./modules/installed_modules.php");
+       class dimensions_app extends application 
+       {
+               function dimensions_app() 
+               {
+                       global $installed_modules;
+                       $dim = get_company_pref('use_dimension');
+                       $this->application("proj",_("Dimensions"));
+
+                       if ($dim > 0)
+                       {
+                               $this->add_module(_("Transactions"));
+                               $this->add_lapp_function(0, _("Dimension Entry"),"dimensions/dimension_entry.php?");
+                               $this->add_lapp_function(0, _("Outstanding Dimensions"),"dimensions/inquiry/search_dimensions.php?OutstandingOnly=1");
+
+                               $this->add_module(_("Inquiries and Reports"));
+                               $this->add_lapp_function(1, _("Dimension Inquiry"),"dimensions/inquiry/search_dimensions.php?");
+
+                               $this->add_rapp_function(1, _("Dimension Reports"),"reporting/reports_main.php?Class=4");
+                               if (count($installed_modules) > 0)
+                               {
+                                       $i = 0;
+                                       foreach ($installed_modules as $mod)
+                                       {
+                                               if ($mod["tab"] == "proj")
+                                               {
+                                                       if ($i++ == 0)
+                                                               $this->add_module(_("Maintenance"));
+                                                       $this->add_rapp_function(2, $mod["name"], "modules/".$mod["path"]."/".$mod["filename"]."?");
+                                               }       
+                                       }
+                               }       
+                       }
+               }
+       }
+
+
 ?>
\ No newline at end of file