66 lines
2.6 KiB
PHP
66 lines
2.6 KiB
PHP
<div id="headerbar">
|
|
<h1 class="headerbar-title"><?php _trans('custom_values'); ?></h1>
|
|
|
|
<div class="headerbar-item pull-right">
|
|
<a class="btn btn-sm btn-primary" href="<?php echo site_url('custom_fields/form'); ?>">
|
|
<i class="fa fa-plus"></i> <?php _trans('new'); ?>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="headerbar-item pull-right">
|
|
<?php echo pager(site_url('custom_values/index'), 'mdl_custom_values'); ?>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="content" class="table-content">
|
|
|
|
<?php echo $this->layout->load_view('layout/alerts'); ?>
|
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th><?php _trans('id'); ?></th>
|
|
<th><?php _trans('field'); ?></th>
|
|
<th><?php _trans('elements'); ?></th>
|
|
<th><?php _trans('type'); ?></th>
|
|
<th><?php _trans('options'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($custom_values as $custom_values) { ?>
|
|
<?php $alpha = str_replace("-", "_", strtolower($custom_values->custom_field_type)); ?>
|
|
<tr>
|
|
<td><?php echo $custom_values->custom_field_id; ?></td>
|
|
<td><?php _htmlsc($custom_values->custom_field_label); ?></td>
|
|
<td><?php echo $custom_values->count; ?></td>
|
|
<td><?php _trans($alpha); ?></td>
|
|
<td>
|
|
<div class="options btn-group">
|
|
<a class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" href="#">
|
|
<i class="fa fa-cog"></i> <?php _trans('options'); ?>
|
|
</a>
|
|
<ul class="dropdown-menu">
|
|
<li>
|
|
<a href="<?php echo site_url('custom_values/field/' . $custom_values->custom_field_id); ?>">
|
|
<i class="fa fa-edit fa-margin"></i> <?php _trans('edit'); ?>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="<?php echo site_url('custom_fields/delete/' . $custom_values->custom_field_id); ?>"
|
|
onclick="return confirm('<?php _trans('delete_record_warning'); ?>');">
|
|
<i class="fa fa-trash-o fa-margin"></i> <?php _trans('delete'); ?>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<?php } ?>
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|