PluginProbe
ShiftController Employee Shift Scheduling / 2.1.0
ShiftController Employee Shift Scheduling v2.1.0
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.1.0, at application/views/admin/users/_menu.php

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