Exemple #1
0
<?php

echo form_open();
echo toolbar_open('Site Edit');
echo toolbar_save();
echo toolbar_apply();
echo toolbar_cancel();
echo toolbar_close();
echo message_note();
?>

<div class='content'>
	
<?php 
echo jquery_tab_open(array('main' => 'Site', 'shifts' => 'Shift Times', 'assignments' => 'Staff', 'workingdays' => 'Working Days'));
echo jquery_tab_page_open('main');
?>
<table class='DataRow' cellpadding='0' cellspacing='0'>
<tr><th>Id:</th><td><?php 
echo $row->id;
?>
</td></tr>
<tr><th>Name:</th><td><?php 
echo form_input('name', quotes_to_entities($row->name), 'size="60"');
?>
</td></tr>
<tr><th>Code:</th><td><?php 
echo form_input('code', quotes_to_entities($row->code), 'size="60"');
?>
</td></tr>
<tr><th>Street Number:</th><td><?php 
Exemple #2
0
<?php

echo form_open();
echo toolbar_open('Staff Edit');
echo toolbar_save();
echo toolbar_apply();
echo toolbar_cancel();
echo toolbar_close();
echo message_note();
?>

<div class='content'>
	
<?php 
echo jquery_tab_open(array('main' => 'Staff', 'assignments' => 'Sites'));
echo jquery_tab_page_open('main');
?>

<div class='toolbar_sub'>
<?php 
echo toolbar_button('google_sync', 'Google Sync', '', '', 'btn-primary btn-sm');
echo toolbar_button('request_setup', 'Request Setup', '', '', 'btn-primary btn-sm');
?>
</div>
<table class='DataRow' cellpadding='0' cellspacing='0'>
<tr><th>Id:</th><td><?php 
echo $row->id;
?>
</td></tr>
<tr><th>Last Name:</th><td><?php 
echo form_input('last_name', quotes_to_entities($row->last_name), 'size="60"');
Exemple #3
0
<?php

echo form_open();
echo message_note();
?>

<div class='content'>
	
<?php 
echo jquery_tab_open(array('shift' => 'Shift Confirmation', 'attendance' => 'Attendance Discrepancy', 'leave' => 'Leave Plans'));
echo jquery_tab_page_open('shift');
?>

<h4><span class="col-lg-11">&nbsp;</span><a href="#" onclick="get_Details()"><i class="glyphicon glyphicon-refresh" title="Reload">Reload</i></a></h4>
<table cellpadding='0' cellspacing='0' class="table table-bordered col-md-6">
    <thead>
		<tr >
			<th>Site</th>
            <th>Present</th>
            <th>Absent</th>
            <th>Not Responded</th>
            <th>Callback Requested</th>
        </tr>
    </thead>
    <tbody id="live-stats">  </tbody>
</table>


<?php 
echo jquery_tab_page_close();
echo jquery_tab_page_open('attendance');