37 lines
1.2 KiB
PHP
37 lines
1.2 KiB
PHP
<div class="col-md-12">
|
|
<fieldset class="col-md-5">
|
|
<legend>Method Details</legend>
|
|
|
|
<?php
|
|
echo View::factory('field/text')->set('data',['field'=>'notes','value'=>$o->notes,'text'=>'Description','class'=>'col-md-9','classlabelnum'=>'3']);
|
|
echo View::factory('field/text')->set('data',['field'=>'menu_display','value'=>$o->menu_display,'text'=>'Menu Title','class'=>'col-md-9','classlabelnum'=>'3']);
|
|
?>
|
|
</fieldset>
|
|
|
|
<fieldset class="col-md-7">
|
|
<legend>Method Security</legend>
|
|
|
|
<table class="table table-striped table-condensed table-hover" id="list-table">
|
|
<thead><tr>
|
|
<th>Method</th>
|
|
<th>Notes</th>
|
|
<th>Active</th>
|
|
<th>Enabled</th>
|
|
</tr></thead>
|
|
|
|
<tbody>
|
|
<?php foreach (ORM::factory('Group')->find_all() as $go) : ?>
|
|
<tr>
|
|
<td><?php echo HTML::anchor(URL::link('admin','group/edit/'.$go->id,TRUE),$go->display('name')); ?></td>
|
|
<td><?php echo $go->display('notes'); ?></td>
|
|
<td><?php echo $go->display('active'); ?></td>
|
|
<td><?php echo Form::checkbox('groups[]',$go->id,$o->has('group',$go),array('nocg'=>TRUE)); ?></td>
|
|
</tr>
|
|
<?php endforeach ?>
|
|
</tbody>
|
|
</table>
|
|
</fieldset>
|
|
|
|
<?php echo View::factory('field/submit'); ?>
|
|
</div>
|