OSB enhancements to date

This commit is contained in:
Deon George
2010-11-30 09:41:08 +11:00
parent 8715a2059b
commit ec6a542bc3
478 changed files with 23423 additions and 9309 deletions

View File

@@ -0,0 +1,4 @@
<tr>
<td><a href="<?php echo URL::site(sprintf('/admin/module/edit/%s',$module->id)); ?>" alt=""><?php echo $module->name; ?></a></td>
<td><?php echo $module->display('status'); ?></td>
</tr>

View File

@@ -0,0 +1 @@
</table>

View File

@@ -0,0 +1,6 @@
<!-- //@todo Translation required -->
<table class="box-left">
<tr class="head">
<td>Module</td>
<td>Active</td>
</tr>

View File

@@ -0,0 +1,21 @@
<?php echo Form::open(); ?>
<table>
<tr>
<td class="head">Module</td>
<td><?php echo $module->name; ?></td>
</tr>
<tr>
<td class="head">Name</td>
<td><?php echo $method->name; ?></td>
</tr>
<tr>
<td class="head">Notes</td>
<td><?php echo Form::input('notes',$method->name); ?></td>
</tr>
<tr>
<td class="head">Menu Display</td>
<td><?php echo StaticList_YesNo::form('menu_display',0); ?></td>
</tr>
</table>
<?php echo Form::submit('submit',_('Add')); ?>
<?php echo Form::close(); ?>

View File

@@ -0,0 +1,8 @@
<tr>
<td>
<a href="<?php echo URL::site(sprintf('/admin/group/edit/%s',$group->id)); ?>"><?php echo $group->display('name'); ?></a>
</td>
<td><?php echo $group->display('notes'); ?></td>
<td><?php echo $group->display('status'); ?></td>
<td><?php echo Form::checkbox('groups[]',$group->id,$defined); ?></td>
</tr>

View File

@@ -0,0 +1 @@
</table>

View File

@@ -0,0 +1,8 @@
<!-- //@todo Translation required -->
<table class="box-left">
<tr class="head">
<td>Method</td>
<td>Notes</td>
<td>Group Active</td>
<td>Method Enabled</td>
</tr>

View File

@@ -0,0 +1,11 @@
<tr>
<td>
<?php if ($defined) { ?>
<a href="<?php echo URL::site(sprintf('/admin/module_method/edit/%s',$method->id)); ?>" alt=""><?php echo $method->name; ?></a>
<?php } else { ?>
<a href="<?php echo URL::site(sprintf('/admin/module_method/add/%s/%s',$module->id,$method->name)); ?>" alt=""><?php echo $method->name; ?></a>
<?php } ?>
</td>
<td><?php echo $method->display('notes'); ?></td>
<td><?php echo $method->display('menu_display'); ?></td>
</tr>

View File

@@ -0,0 +1 @@
</table>

View File

@@ -0,0 +1,7 @@
<!-- //@todo Translation required -->
<table class="box-left">
<tr class="head">
<td>Method</td>
<td>Notes</td>
<td>Menu</td>
</tr>

View File

@@ -0,0 +1,3 @@
<tr class="spacer">
<td>&nbsp;</td>
</tr>