42 lines
1.3 KiB
PHP
42 lines
1.3 KiB
PHP
<div class="col-md-5">
|
|
<fieldset>
|
|
<legend>Method Details</legend>
|
|
|
|
<?php echo Form::input('notes',$o->notes,array('label'=>'Desc','placeholder'=>'Method Description','divclass'=>'col-md-9')); ?>
|
|
<?php echo Form::input('menu_display',$o->menu_display,array('label'=>'Title','placeholder'=>'Menu Title','divclass'=>'col-md-9')); ?>
|
|
</fieldset>
|
|
</div> <!-- /col-md-->
|
|
|
|
<div class="col-md-6">
|
|
<fieldset>
|
|
<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>Group Active</th>
|
|
<th>Method Enable</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>
|
|
|
|
<div class="row">
|
|
<div class="col-md-offset-2">
|
|
<button type="submit" class="btn btn-primary">Save changes</button>
|
|
<button type="button" class="btn">Cancel</button>
|
|
</div>
|
|
</div>
|
|
</div> <!-- /col-md -->
|