Example #1
0
<?php

echo form_open();
echo toolbar_open('Staff');
echo toolbar_item('google_staffsync', 'Google Sync');
echo toolbar_reload();
echo toolbar_toggle_publish();
echo toolbar_delete();
echo toolbar_edit();
echo toolbar_add();
echo toolbar_close();
echo message_note();
echo form_sort_order($sort_order);
?>

<div class='content'>
		
		
<fieldset class='filter'>
<legend>Filter</legend>
<table cellpadding='0' cellspacing='0' class='filter'>
	<tr>
		<th>Name</th>
		<th>Published</th>
	</tr>
	<tr>
		<td><?php 
echo form_input('filter[name_match]', $filter->name_match);
?>
</td>
		<td><?php 
Example #2
0
<?php

echo form_open();
echo toolbar_open('Sites');
echo toolbar_item('google_sitesync', 'Google Sync');
echo toolbar_reload();
echo toolbar_toggle_publish();
echo toolbar_delete();
echo toolbar_edit();
echo toolbar_add();
echo toolbar_close();
echo message_note();
echo form_sort_order($sort_order);
?>

<div class='content'>
		
		
<fieldset class='filter'>
<legend>Filter</legend>
<table cellpadding='0' cellspacing='0' class='filter'>
	<tr>
		<th>Name</th>
		<th>Published</th>
	</tr>
	<tr>
		<td><?php 
echo form_input('filter[name_match]', $filter->name_match);
?>
</td>
		<td><?php 
Example #3
0
<?php

echo form_open('admin/duty/url_save');
echo toolbar_open('SOP Configuration');
echo toolbar_item('url_save', 'Save');
echo toolbar_cancel();
echo toolbar_close();
echo message_note();
?>

<div class='content'>
    <table class='DataRow' cellpadding='0' cellspacing='0'>
        <tr><th><i class="glyphicon-1x glyphicon-asterisk text-danger"></i> URL:</th><td><?php 
echo form_input('sop_url', quotes_to_entities($url), 'size="100"');
?>
</td></tr>
    </table>
    </div>

<?php 
echo form_close();
Example #4
0
<?php

echo form_open('admin/staff/staffurl_save');
echo toolbar_open('PLRD Active Staff');
echo toolbar_item('staffurl_save', 'Save');
echo toolbar_cancel();
echo toolbar_close();
echo message_note();
?>

<div class='content'>
    <table class='DataRow' cellpadding='0' cellspacing='0'>
        <tr><th><i class="glyphicon-1x glyphicon-asterisk text-danger"></i> URL:</th><td><?php 
echo form_input('staff_url', quotes_to_entities($url), 'size="100"');
?>
</td></tr>
    </table>
    </div>

<?php 
echo form_close();
Example #5
0
function toolbar_send()
{
    return toolbar_item('Send', 'Send', '');
}
Example #6
0
<?php

echo form_open();
echo toolbar_open('Database Upgrade', 'Current version ' . $version);
echo toolbar_item("upgrade", "Upgrade");
echo toolbar_close();
echo message_note();
?>
	
<div class='content'>
<table cellpadding='0' cellspacing='0' class="DataRows">
<th width="5%"><?php 
echo form_checkids_header();
?>
</th>
	<th>Filename</th>
	<th>Version From</th>
	<th>Version To</th>
</tr>

<?php 
foreach ($rows as $row) {
    ?>
	
<?php 
    echo form_row_color_open();
    ?>
<td><?php 
    echo form_checkids_item($row->id, $row->name);
    ?>
</td>
Example #7
0
<?php

echo form_open();
echo toolbar_open('System Control');
echo toolbar_item('build_schedule', 'Build Schedule');
echo toolbar_item('build_data', 'Build Data');
echo toolbar_close();
echo message_note();
?>

<div class='content'>



</div>

<?php 
echo form_close();
Example #8
0
<?php

echo form_open();
echo toolbar_open('Database Backup and Restore', 'Current version ' . $version);
echo toolbar_delete();
echo toolbar_item("backup", "Backup");
echo toolbar_item("restore", "Restore");
echo toolbar_close();
echo message_note();
?>
	
<div class='content'>
<?php 
if (count($rows) == 0) {
    ?>
	<h3>No backup files found</h3>
<?php 
    return;
}
?>

<table cellpadding='0' cellspacing='0' class="DataRows">
<th width="5%"><?php 
echo form_checkids_header();
?>
</th>
<th>Filename</th>
<th>Date Time</th>
<th>Database Name</th>
<th>Version</th>
<th>Size</th>
Example #9
0
<?php

echo form_open();
echo toolbar_open('User Edit');
echo toolbar_item('logs', 'Logs', 'log_view.png');
echo toolbar_save();
echo toolbar_apply();
echo toolbar_cancel();
echo toolbar_close();
echo message_note();
?>

<div class='content'>
<table class='DataRow'>
<tr><th>Id:</th><td><?php 
echo $row->id;
?>
</td></tr>
<tr><th>Group:</th><td><?php 
echo form_dropdown('group_id', $groups, $row->group_id);
?>
</td></tr>
<tr><th>Published:</th><td><?php 
echo form_checkbox('is_published', 'True', $row->is_published == 'True');
?>
</td></tr>
<tr><th>Name:</th><td><?php 
echo form_input('name', quotes_to_entities($row->name), 'size="60"');
?>
</td></tr>
<tr><th>Username:</th><td><?php