Added User email viewing
Improved Table::
This commit is contained in:
7
application/views/table/list_body.php
Normal file
7
application/views/table/list_body.php
Normal 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>
|
1
application/views/table/list_foot.php
Normal file
1
application/views/table/list_foot.php
Normal file
@@ -0,0 +1 @@
|
||||
</table>
|
2
application/views/table/list_head.php
Normal file
2
application/views/table/list_head.php
Normal 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>
|
1
application/views/table/list_xtra.php
Normal file
1
application/views/table/list_xtra.php
Normal file
@@ -0,0 +1 @@
|
||||
<tr><td>Other</td><td colspan="<?php echo count($td)-1; ?>"><?php printf('(%s) %s',$count,$other); ?></td></tr>
|
8
application/views/table/select_body.php
Normal file
8
application/views/table/select_body.php
Normal 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>
|
8
application/views/table/select_foot.php
Normal file
8
application/views/table/select_foot.php
Normal 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>
|
2
application/views/table/select_head.php
Normal file
2
application/views/table/select_head.php
Normal file
@@ -0,0 +1,2 @@
|
||||
<table class="box-full" border="0" id="select-table">
|
||||
<tr class="head"><td style="width: 25px;"> </td><td class="head"><?php echo implode('</td><td class="head">',$th); ?></td></tr>
|
1
application/views/table/select_xtra.php
Normal file
1
application/views/table/select_xtra.php
Normal file
@@ -0,0 +1 @@
|
||||
<tr><td>Other</td><td colspan="<?php echo count($td)-1; ?>"><?php printf('(%s) %s',$count,$other); ?></td></tr>
|
Reference in New Issue
Block a user