fmsystem-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Fmsystem-commits] [15956] more on templates


From: sigurdne
Subject: [Fmsystem-commits] [15956] more on templates
Date: Mon, 7 Nov 2016 07:20:55 +0000 (UTC)

Revision: 15956
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=15956
Author:   sigurdne
Date:     2016-11-07 07:20:54 +0000 (Mon, 07 Nov 2016)
Log Message:
-----------
more on templates

Modified Paths:
--------------
    trunk/controller/inc/class.uicalendar.inc.php
    trunk/controller/inc/class.uicase.inc.php
    trunk/controller/inc/class.uicheck_list.inc.php
    trunk/controller/inc/class.uicheck_list_for_component.inc.php
    trunk/controller/inc/class.uicontrol.inc.php
    trunk/controller/inc/class.uicontrol_group.inc.php
    trunk/controller/inc/class.uicontrol_group_component.inc.php
    trunk/controller/inc/class.uicontrol_item.inc.php
    trunk/controller/inc/class.uicontrol_register_to_component.inc.php
    trunk/controller/inc/class.uicontrol_register_to_location.inc.php
    trunk/controller/inc/class.uidocument.inc.php
    trunk/controller/inc/class.uiprocedure.inc.php
    trunk/phpgwapi/templates/mobilefrontend/head.inc.php

Modified: trunk/controller/inc/class.uicalendar.inc.php
===================================================================
--- trunk/controller/inc/class.uicalendar.inc.php       2016-11-06 10:36:12 UTC 
(rev 15955)
+++ trunk/controller/inc/class.uicalendar.inc.php       2016-11-07 07:20:54 UTC 
(rev 15956)
@@ -98,7 +98,7 @@
                        {
                                $GLOBALS['phpgw_info']['flags']['noframework'] 
= true;
                        }
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                public function view_calendar_for_month()

Modified: trunk/controller/inc/class.uicase.inc.php
===================================================================
--- trunk/controller/inc/class.uicase.inc.php   2016-11-06 10:36:12 UTC (rev 
15955)
+++ trunk/controller/inc/class.uicase.inc.php   2016-11-07 07:20:54 UTC (rev 
15956)
@@ -107,7 +107,7 @@
                        {
                                $GLOBALS['phpgw_info']['flags']['noframework'] 
= true;
                        }
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                private function _get_case_data()

Modified: trunk/controller/inc/class.uicheck_list.inc.php
===================================================================
--- trunk/controller/inc/class.uicheck_list.inc.php     2016-11-06 10:36:12 UTC 
(rev 15955)
+++ trunk/controller/inc/class.uicheck_list.inc.php     2016-11-07 07:20:54 UTC 
(rev 15956)
@@ -106,7 +106,7 @@
                        {
                                $GLOBALS['phpgw_info']['flags']['noframework'] 
= true;
                        }
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                /**

Modified: trunk/controller/inc/class.uicheck_list_for_component.inc.php
===================================================================
--- trunk/controller/inc/class.uicheck_list_for_component.inc.php       
2016-11-06 10:36:12 UTC (rev 15955)
+++ trunk/controller/inc/class.uicheck_list_for_component.inc.php       
2016-11-07 07:20:54 UTC (rev 15956)
@@ -84,7 +84,7 @@
                        $this->location_code = $this->bo->location_code;
 
                        
self::set_active_menu('controller::control::component_for_check_list');
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                function index()

Modified: trunk/controller/inc/class.uicontrol.inc.php
===================================================================
--- trunk/controller/inc/class.uicontrol.inc.php        2016-11-06 10:36:12 UTC 
(rev 15955)
+++ trunk/controller/inc/class.uicontrol.inc.php        2016-11-07 07:20:54 UTC 
(rev 15956)
@@ -106,7 +106,7 @@
                        $this->home_alternative = 
isset($config->config_data['home_alternative']) && 
$config->config_data['home_alternative'] == 1 ? true : false;
 
                        self::set_active_menu('controller::control');
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                /**

Modified: trunk/controller/inc/class.uicontrol_group.inc.php
===================================================================
--- trunk/controller/inc/class.uicontrol_group.inc.php  2016-11-06 10:36:12 UTC 
(rev 15955)
+++ trunk/controller/inc/class.uicontrol_group.inc.php  2016-11-07 07:20:54 UTC 
(rev 15956)
@@ -79,7 +79,7 @@
                        $this->add = $GLOBALS['phpgw']->acl->check('.control', 
PHPGW_ACL_ADD, 'controller');//2
                        $this->edit = $GLOBALS['phpgw']->acl->check('.control', 
PHPGW_ACL_EDIT, 'controller');//4
                        $this->delete = 
$GLOBALS['phpgw']->acl->check('.control', PHPGW_ACL_DELETE, 'controller');//8
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                public function index()

Modified: trunk/controller/inc/class.uicontrol_group_component.inc.php
===================================================================
--- trunk/controller/inc/class.uicontrol_group_component.inc.php        
2016-11-06 10:36:12 UTC (rev 15955)
+++ trunk/controller/inc/class.uicontrol_group_component.inc.php        
2016-11-07 07:20:54 UTC (rev 15956)
@@ -74,7 +74,7 @@
                        $this->location_code = $this->bo->location_code;
 
                        
self::set_active_menu('controller::control_group::component_for_control_group');
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                function index()

Modified: trunk/controller/inc/class.uicontrol_item.inc.php
===================================================================
--- trunk/controller/inc/class.uicontrol_item.inc.php   2016-11-06 10:36:12 UTC 
(rev 15955)
+++ trunk/controller/inc/class.uicontrol_item.inc.php   2016-11-07 07:20:54 UTC 
(rev 15956)
@@ -77,7 +77,7 @@
                        $this->add = $GLOBALS['phpgw']->acl->check('.control', 
PHPGW_ACL_ADD, 'controller');//2
                        $this->edit = $GLOBALS['phpgw']->acl->check('.control', 
PHPGW_ACL_EDIT, 'controller');//4
                        $this->delete = 
$GLOBALS['phpgw']->acl->check('.control', PHPGW_ACL_DELETE, 'controller');//8
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                public function index()

Modified: trunk/controller/inc/class.uicontrol_register_to_component.inc.php
===================================================================
--- trunk/controller/inc/class.uicontrol_register_to_component.inc.php  
2016-11-06 10:36:12 UTC (rev 15955)
+++ trunk/controller/inc/class.uicontrol_register_to_component.inc.php  
2016-11-07 07:20:54 UTC (rev 15956)
@@ -84,7 +84,7 @@
                        $this->location_code = $this->bo->location_code;
 
                        
self::set_active_menu('controller::control::location_for_check_list');
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                function index()

Modified: trunk/controller/inc/class.uicontrol_register_to_location.inc.php
===================================================================
--- trunk/controller/inc/class.uicontrol_register_to_location.inc.php   
2016-11-06 10:36:12 UTC (rev 15955)
+++ trunk/controller/inc/class.uicontrol_register_to_location.inc.php   
2016-11-07 07:20:54 UTC (rev 15956)
@@ -87,7 +87,7 @@
                        $this->location_code = $this->bo->location_code;
 
                        
self::set_active_menu('controller::control::location_for_check_list');
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                function index()

Modified: trunk/controller/inc/class.uidocument.inc.php
===================================================================
--- trunk/controller/inc/class.uidocument.inc.php       2016-11-06 10:36:12 UTC 
(rev 15955)
+++ trunk/controller/inc/class.uidocument.inc.php       2016-11-07 07:20:54 UTC 
(rev 15956)
@@ -60,7 +60,7 @@
                        $this->add = 
$GLOBALS['phpgw']->acl->check('.procedure', PHPGW_ACL_ADD, 'controller');//2
                        $this->edit = 
$GLOBALS['phpgw']->acl->check('.procedure', PHPGW_ACL_EDIT, 'controller');//4
                        $this->delete = 
$GLOBALS['phpgw']->acl->check('.procedure', PHPGW_ACL_DELETE, 'controller');//8
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                public function query()

Modified: trunk/controller/inc/class.uiprocedure.inc.php
===================================================================
--- trunk/controller/inc/class.uiprocedure.inc.php      2016-11-06 10:36:12 UTC 
(rev 15955)
+++ trunk/controller/inc/class.uiprocedure.inc.php      2016-11-07 07:20:54 UTC 
(rev 15956)
@@ -76,7 +76,7 @@
                        $config = CreateObject('phpgwapi.config', 'controller');
                        $config->read();
                        $this->_category_acl = 
isset($config->config_data['acl_at_control_area']) && 
$config->config_data['acl_at_control_area'] == 1 ? true : false;
-                       
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
+//                     
$GLOBALS['phpgw']->css->add_external_file('controller/templates/base/css/base.css');
                }
 
                public function index()

Modified: trunk/phpgwapi/templates/mobilefrontend/head.inc.php
===================================================================
--- trunk/phpgwapi/templates/mobilefrontend/head.inc.php        2016-11-06 
10:36:12 UTC (rev 15955)
+++ trunk/phpgwapi/templates/mobilefrontend/head.inc.php        2016-11-07 
07:20:54 UTC (rev 15956)
@@ -23,10 +23,9 @@
        $stylesheets[] = 
"/phpgwapi/templates/pure/css/grids-responsive-min.css";
     $stylesheets[] = 
"/phpgwapi/js/DataTables/extensions/Responsive/css/responsive.dataTables.min.css";
 
-       $stylesheets[] = "/phpgwapi/templates/portico/css/base.css";
+//     $stylesheets[] = "/phpgwapi/templates/portico/css/base.css";
 //     $stylesheets[] = 
"/phpgwapi/templates/portico/css/{$GLOBALS['phpgw_info']['user']['preferences']['common']['theme']}.css";
-       $stylesheets[] = "/{$app}/templates/base/css/base.css";
-       $stylesheets[] = "/{$app}/templates/portico/css/base.css";
+       $stylesheets[] = "/{$app}/templates/mobilefrontend/css/base.css";
        $stylesheets[] = 
"/{$app}/templates/portico/css/{$GLOBALS['phpgw_info']['user']['preferences']['common']['theme']}.css";
        $stylesheets[] = "/phpgwapi/templates/bookingfrontend/css/frontend.css";
     $stylesheets[] = "/bookingfrontend/css/bookingfrontend.css";




reply via email to

[Prev in Thread] Current Thread [Next in Thread]