ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/admin/settings/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/admin/settings/route_settings.php |
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?> <div class="row"> <div class="col-sm-12 col-lg-8"> <div class="box"> <div class="box-header with-border"> <div class="left"> <h3 class="box-title"><?php echo trans("route_settings");; ?></h3> </div> </div><!-- /.box-header --> <!-- form start --> <?php echo form_open('settings_controller/route_settings_post'); ?> <div class="box-body"> <div class="row"> <!-- include message block --> <div class="col-sm-12"> <?php $this->load->view('admin/includes/_messages'); ?> </div> </div> <?php if (!empty($routes)): foreach ($routes as $route): ?> <div class="row"> <div class="col-sm-6 col-xs-6"> <div class="form-group"> <input type="text" class="form-control" name="route_key_<?= $route->id; ?>" value="<?= str_replace('_', '-', $route->route_key); ?>" <?= ($this->rtl == true) ? 'dir="rtl"' : ''; ?> readonly> </div> </div> <div class="col-sm-6 col-xs-6"> <div class="form-group"> <input type="text" class="form-control" name="route_<?= $route->id; ?>" value="<?= $route->route; ?>" maxlength="100" <?= ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> </div> </div> </div> <?php endforeach; endif; ?> </div><!-- /.box-body --> <!-- /.box-body --> <div class="box-footer"> <button type="submit" class="btn btn-primary pull-right"><?php echo trans('save_changes'); ?></button> </div> <!-- /.box-footer --> <?php echo form_close(); ?><!-- form end --> </div> <div class="alert alert-danger alert-large"> <strong><?php echo trans("warning"); ?>!</strong> <?php echo trans("route_settings_warning"); ?> </div> </div> </div>