PluginProbe
ShiftController Employee Shift Scheduling / 2.2.5
ShiftController Employee Shift Scheduling v2.2.5
4.9.97 4.9.96 4.9.95 4.9.74 4.9.75 4.9.76 4.9.77 4.9.78 4.9.84 4.9.85 4.9.87 4.9.91 4.9.92 trunk 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 3.2.4 All 38 releases
shiftcontroller / application / views / admin / users / _menu.php

_menu.php in ShiftController Employee Shift Scheduling 2.2.5, at application/views/admin/users/_menu.php

31 lines 870 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 $menu = array();
3 $menu['index'] = array(
4 array($this->conf['path']),
5 '<i class="fa fa-list"></i>' . ' ' . lang('common_view')
6 );
7
8 $CI =& ci_get_instance();
9 $ri = $CI->remote_integration();
10 if( ! $ri )
11 {
12 $menu['add'] = array(
13 array($this->conf['path'], 'add'),
14 '<i class="fa fa-plus-square-o"></i>' . ' ' . lang('common_add')
15 );
16 }
17 else
18 {
19 $menu['add'] = array(
20 array($ri, $this->conf['path'], 'add'),
21 '<i class="fa fa-plus-square-o"></i>' . ' ' . lang('common_add') . ' [' . ucfirst($ri) . ']'
22 );
23
24 $menu['sync'] = array(
25 array($ri, $this->conf['path'], 'sync'),
26 // '<i class="fa fa-download"></i>' . ' ' . lang('common_sync_from') . ' [' . ucfirst($ri) . ']'
27 '<i class="fa fa-download"></i>' . ' ' . lang('common_sync_from')
28 );
29 }
30 ?>
31 <?php require( NTS_SYSTEM_APPPATH . 'views/_boilerplate/_print_menu.php' ); ?>