Added User email viewing

Improved Table::
This commit is contained in:
Deon George
2011-08-27 16:33:46 +10:00
parent 495da41e0d
commit 6d44e7d5b2
51 changed files with 701 additions and 273 deletions

View File

@@ -0,0 +1,7 @@
<tr class="<?php echo $trc; ?>">
<?php foreach ($td as $col => $details) { ?>
<td class="<?php echo $details['class']; ?>">
<?php echo $details['url'] ? sprintf(HTML::anchor($details['url'].$details['value'],$details['value'])) : $details['value']; ?>
</td>
<?php } ?>
</tr>

View File

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

View File

@@ -0,0 +1,2 @@
<table class="box-left" border="0" id="list-table">
<tr class="head"><td class="head"><?php echo implode('</td><td class="head">',$th); ?></td></tr>

View File

@@ -0,0 +1 @@
<tr><td>Other</td><td colspan="<?php echo count($td)-1; ?>"><?php printf('(%s) %s',$count,$other); ?></td></tr>

View File

@@ -0,0 +1,8 @@
<tr class="<?php echo $trc; ?>">
<td><?php echo Form::checkbox('id[]',$td['id']['value']); ?></td>
<?php foreach ($td as $col => $details) { ?>
<td class="<?php echo $details['class']; ?>">
<?php echo $details['url'] ? sprintf(HTML::anchor($details['url'].$details['value'],$details['value'])) : $details['value']; ?>
</td>
<?php } ?>
</tr>

View File

@@ -0,0 +1,8 @@
</table>
<div style="text-align: center;" id="select-menu">
<br/>
<input type="submit" name="Submit" value="View/Edit" class="form_button"/>
<input type="button" name="Submit" value="Select All" class="form_button" id="all_on" />
<input type="button" name="Submit" value="Deselect All" class="form_button" id="all_off" />
<input type="button" name="Submit" value="Toggle Select" class="form_button" id="toggle" />
</div>

View File

@@ -0,0 +1,2 @@
<table class="box-full" border="0" id="select-table">
<tr class="head"><td style="width: 25px;">&nbsp;</td><td class="head"><?php echo implode('</td><td class="head">',$th); ?></td></tr>

View File

@@ -0,0 +1 @@
<tr><td>Other</td><td colspan="<?php echo count($td)-1; ?>"><?php printf('(%s) %s',$count,$other); ?></td></tr>