fmsystem-commits
[Top][All Lists]
Advanced

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

[Fmsystem-commits] [16285] simplified groups


From: sigurdne
Subject: [Fmsystem-commits] [16285] simplified groups
Date: Wed, 8 Feb 2017 14:00:00 -0500 (EST)

Revision: 16285
          http://svn.sv.gnu.org/viewvc/?view=rev&root=fmsystem&revision=16285
Author:   sigurdne
Date:     2017-02-08 14:00:00 -0500 (Wed, 08 Feb 2017)
Log Message:
-----------
simplified groups

Modified Paths:
--------------
    trunk/helpdesk/inc/class.uitts.inc.php
    trunk/helpdesk/templates/base/config.tpl
    trunk/property/inc/class.botts.inc.php

Modified: trunk/helpdesk/inc/class.uitts.inc.php
===================================================================
--- trunk/helpdesk/inc/class.uitts.inc.php      2017-02-08 18:30:24 UTC (rev 
16284)
+++ trunk/helpdesk/inc/class.uitts.inc.php      2017-02-08 19:00:00 UTC (rev 
16285)
@@ -106,8 +106,35 @@
                        $this->end_date                         = 
$this->bo->end_date;
                        $this->location_code            = 
$this->bo->location_code;
                        $this->p_num                            = 
$this->bo->p_num;
+
+
+                       $default_interface = 
isset($this->bo->config->config_data['tts_default_interface']) ? 
$this->bo->config->config_data['tts_default_interface'] : '';
+
+                       /*
+                        * Inverted logic
+                        */
+                       if($default_interface == 'simplified')
+                       {
+                               $this->_simple = true;
+                       }
+
                        $user_groups =  
$GLOBALS['phpgw']->accounts->membership($this->account);
                        $simple_group = 
isset($this->bo->config->config_data['fmttssimple_group']) ? 
$this->bo->config->config_data['fmttssimple_group'] : array();
+                       foreach ($user_groups as $group => $dummy)
+                       {
+                               if (in_array($group, $simple_group))
+                               {
+                                       if($default_interface == 'simplified')
+                                       {
+                                               $this->_simple = false;
+                                       }
+                                       else
+                                       {
+                                               $this->_simple = true;
+                                       }
+                                       break;
+                               }
+                       }
                        if 
(isset($this->bo->config->config_data['fmtts_assign_group_candidates']) && 
is_array($this->bo->config->config_data['fmtts_assign_group_candidates']))
                        {
                                foreach 
($this->bo->config->config_data['fmtts_assign_group_candidates'] as 
$group_candidate)
@@ -118,11 +145,14 @@
                                        }
                                }
                        }
+
+                       reset($user_groups);
+
                        foreach ( $user_groups as $group => $dummy)
                        {
-                               if ( in_array($group, $simple_group) && 
!in_array($group, $this->_group_candidates))
+                               if ( in_array($group, $this->_group_candidates))
                                {
-                                       $this->_simple = true;
+                                       $this->_simple = false;
                                        break;
                                }
                        }

Modified: trunk/helpdesk/templates/base/config.tpl
===================================================================
--- trunk/helpdesk/templates/base/config.tpl    2017-02-08 18:30:24 UTC (rev 
16284)
+++ trunk/helpdesk/templates/base/config.tpl    2017-02-08 19:00:00 UTC (rev 
16285)
@@ -1,18 +1,20 @@
 <!-- BEGIN header -->
 <form method="POST" action="{action_url}">
-       <table class="pure-table pure-table-bordered">
-               <tr class="th">
-                       <td colspan="2"><font 
color="{th_text}">&nbsp;<b>{title}</b></font></td>
-               </tr>
+       <table class="pure-table pure-table-bordered pure-table-striped">
+               <thead>
+                       <tr>
+                               <th colspan="2">{title}</th>
+                       </tr>
+               </thead>
                <!-- END header -->
                <!-- BEGIN body -->
-               <tr class="row_on">
+               <tr>
                        <td colspan="2">&nbsp;</td>
                </tr>
                <tr class="row_off">
                        <td 
colspan="2">&nbsp;<b>{lang_helpdesk}/{lang_settings}</b></td>
                </tr>
-               <tr class="row_on">
+               <tr>
                        <td>{lang_app_name}: <br>
                                {lang_default}: {lang_Helpdesk}</td>
                        <td><input name="newsettings[app_name]" 
value="{value_app_name}"></td>
@@ -29,7 +31,7 @@
                <tr class="row_off">
                        <td 
colspan="2">&nbsp;<b>{lang_TTS}::{lang_settings}</b></td>
                </tr>
-               <tr class="row_on">
+               <tr>
                        <td>{lang_Open_translates_to}: <br>
                                {lang_default}: {lang_Open}</td>
                        <td><input name="newsettings[tts_lang_open]" 
value="{value_tts_lang_open}"></td>
@@ -61,8 +63,17 @@
                                </select>
                        </td>
                </tr>
+               <tr>
+                       <td >{lang_TTS_default_interface}:</td>
+                       <td>
+                               <select 
name="newsettings[tts_default_interface]">
+                                       <option value="" 
{selected_tts_default_interface_}>Full</option>
+                                       <option value="simplified" 
{selected_tts_default_interface_simplified}>{lang_simplified}</option>
+                               </select>
+                       </td>
+               </tr>
 
-               <tr class="row_on">
+               <tr>
                        <td valign = 'top'>{lang_TTS_simplified_group}:</td>
                        <td>
                                <!--to be able to blank the setting - need an 
empty value-->
@@ -82,7 +93,7 @@
                                </table>
                        </td>
                </tr>
-               <tr class="row_on">
+               <tr>
                        <td>{lang_Mail_Notification}:</td>
                        <td>
                                <select name="newsettings[mailnotification]">
@@ -109,7 +120,7 @@
                                </select>
                        </td>
                </tr>
-               <tr class="row_on">
+               <tr>
                        <td>{lang_Assigned_Notification_TTS}.</td>
                        <td>
                                <select 
name="newsettings[assignednotification]">
@@ -136,7 +147,7 @@
                                </select>
                        </td>
                </tr>
-               <tr class="row_on">
+               <tr>
                        <td>{lang_priority_levels_TTS}.</td>
                        <td>
                                <select name="newsettings[prioritylevels]">
@@ -156,7 +167,7 @@
                        </td>
                </tr>
 
-               <tr class="row_on">
+               <tr>
                        <td valign = 'top'>{lang_TTS_finnish_date}:</td>
                        <td>
                                <!--to be able to blank the setting - need an 
empty value-->
@@ -178,17 +189,19 @@
 
                <!-- END body -->
                <!-- BEGIN footer -->
-               <tr class="th">
-                       <td colspan="2">
-                               &nbsp;
-                       </td>
-               </tr>
-               <tr>
-                       <td colspan="2" align="center">
-                               <input type="submit" name="submit" 
value="{lang_submit}">
-                               <input type="submit" name="cancel" 
value="{lang_cancel}">
-                       </td>
-               </tr>
+               <tfoot>
+                       <tr>
+                               <td colspan="2">
+                                       &nbsp;
+                               </td>
+                       </tr>
+                       <tr>
+                               <td colspan="2" align="center">
+                                       <input type="submit" name="submit" 
value="{lang_submit}">
+                                       <input type="submit" name="cancel" 
value="{lang_cancel}">
+                               </td>
+                       </tr>
+               </tfoot>
        </table>
 </form>
 <!-- END footer -->

Modified: trunk/property/inc/class.botts.inc.php
===================================================================
--- trunk/property/inc/class.botts.inc.php      2017-02-08 18:30:24 UTC (rev 
16284)
+++ trunk/property/inc/class.botts.inc.php      2017-02-08 19:00:00 UTC (rev 
16285)
@@ -100,6 +100,21 @@
                        $user_groups =  
$GLOBALS['phpgw']->accounts->membership($this->account);
                        $simple_group = 
isset($this->config->config_data['fmttssimple_group']) ? 
$this->config->config_data['fmttssimple_group'] : array();
 
+                       foreach ($user_groups as $group => $dummy)
+                       {
+                               if (in_array($group, $simple_group))
+                               {
+                                       if($default_interface == 'simplified')
+                                       {
+                                               $this->simple = false;
+                                       }
+                                       else
+                                       {
+                                               $this->simple = true;   
+                                       }
+                                       break;
+                               }
+                       }
                        if 
(isset($this->config->config_data['fmtts_assign_group_candidates']) && 
is_array($this->config->config_data['fmtts_assign_group_candidates']))
                        {
                                foreach 
($this->config->config_data['fmtts_assign_group_candidates'] as 
$group_candidate)
@@ -110,34 +125,18 @@
                                        }
                                }
                        }
+                       reset($user_groups);
+
                        foreach ( $user_groups as $group => $dummy)
                        {
-                               if ( in_array($group, $simple_group) && 
!in_array($group, $this->group_candidates))
+                               if ( in_array($group, $this->group_candidates))
                                {
-                                       $this->simple = true;
+                                       $this->simple = false;
                                        break;
                                }
                        }
 
                        reset($user_groups);
-                       $user_groups = 
$GLOBALS['phpgw']->accounts->membership($this->account);
-                       foreach ($user_groups as $group => $dummy)
-                       {
-                               if (in_array($group, $simple_group))
-                               {
-                                       if($default_interface == 'simplified')
-                                       {
-                                               $this->simple = false;
-                                       }
-                                       else
-                                       {
-                                               $this->simple = true;   
-                                       }
-                                       break;
-                               }
-                       }
-
-                       reset($user_groups);
                        $group_finnish_date = 
isset($this->config->config_data['fmtts_group_finnish_date']) ? 
$this->config->config_data['fmtts_group_finnish_date'] : array();
                        foreach ($user_groups as $group => $dummy)
                        {




reply via email to

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