96 lines
4.4 KiB
PHP
96 lines
4.4 KiB
PHP
<form method="post">
|
|
|
|
<input type="hidden" name="_ip_csrf" value="<?= $this->security->get_csrf_hash() ?>">
|
|
|
|
<div id="headerbar">
|
|
<h1 class="headerbar-title"><?php _trans('custom_values'); ?></h1>
|
|
|
|
<div class="headerbar-item pull-right">
|
|
<div class="btn-group btn-group-sm">
|
|
<a class="btn btn-default" href="<?php echo site_url('custom_values'); ?>">
|
|
<i class="fa fa-arrow-left"></i> <?php _trans('back'); ?>
|
|
</a>
|
|
<a class="btn btn-primary" href="<?php echo site_url('custom_values/create/' . $id); ?>">
|
|
<i class="fa fa-plus"></i> <?php _trans('new'); ?>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
<?php $this->layout->load_view('layout/alerts'); ?>
|
|
|
|
<div class="row">
|
|
<div class="col-xs-12 col-md-6 col-md-offset-3">
|
|
|
|
<div class="form-group">
|
|
<label for="custom_values_label"><?php _trans('field'); ?>: </label>
|
|
<input type="text" name="custom_values_label" id="custom_values_label" class="form-control"
|
|
value="<?php _htmlsc($field->custom_field_label); ?>" disabled="disabled">
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="custom_field_types"><?php _trans('type'); ?>: </label>
|
|
<select name="custom_field_types" id="custom_field_types" class="form-control simple-select"
|
|
disabled="disabled">
|
|
<?php foreach ($custom_values_types as $type): ?>
|
|
<?php $alpha = str_replace('-', '_', strtolower($type)); ?>
|
|
<option value="<?php echo $type; ?>" <?php check_select($field->custom_field_type, $type); ?>>
|
|
<?php _trans($alpha); ?>
|
|
</option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<table class="table table-bordered">
|
|
|
|
<thead>
|
|
<tr>
|
|
<th><?php _trans('id'); ?></th>
|
|
<th><?php _trans('label'); ?></th>
|
|
<th><?php _trans('options'); ?></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($elements as $element) { ?>
|
|
<tr>
|
|
<td><?php echo $element->custom_values_id; ?></td>
|
|
<td><?php _htmlsc($element->custom_values_value); ?></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/edit/' . $element->custom_values_id); ?>">
|
|
<i class="fa fa-edit fa-margin"></i> <?php _trans('edit'); ?>
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="<?php echo site_url('custom_values/delete/' . $element->custom_values_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>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|