ok
Direktori : /proc/thread-self/root/home2/selectio/www/bharath/application/views/admin/blog/ |
Current File : //proc/thread-self/root/home2/selectio/www/bharath/application/views/admin/blog/update_category.php |
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <div class="row"> <div class="col-lg-5 col-md-12"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php echo trans("update_category"); ?></h3> </div> <!-- /.box-header --> <!-- form start --> <?php echo form_open('blog_controller/update_category_post'); ?> <input type="hidden" name="id" value="<?php echo $category->id; ?>"> <div class="box-body"> <!-- include message block --> <?php $this->load->view('admin/includes/_messages'); ?> <div class="form-group"> <label><?php echo trans("language"); ?></label> <select name="lang_id" class="form-control"> <?php foreach ($this->languages as $language): ?> <option value="<?php echo $language->id; ?>" <?php echo ($category->lang_id == $language->id) ? 'selected' : ''; ?>><?php echo $language->name; ?></option> <?php endforeach; ?> </select> </div> <div class="form-group"> <label><?php echo trans("category_name"); ?></label> <input type="text" class="form-control" name="name" placeholder="<?php echo trans("category_name"); ?>" value="<?php echo html_escape($category->name); ?>" maxlength="200" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> </div> <div class="form-group"> <label class="control-label"><?php echo trans("slug"); ?> <small>(<?php echo trans("slug_exp"); ?>)</small> </label> <input type="text" class="form-control" name="slug" placeholder="<?php echo trans("slug"); ?>" value="<?php echo html_escape($category->slug); ?>" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?>> </div> <div class="form-group"> <label class="control-label"><?php echo trans('description'); ?> (<?php echo trans('meta_tag'); ?>)</label> <input type="text" class="form-control" name="description" placeholder="<?php echo trans('description'); ?> (<?php echo trans('meta_tag'); ?>)" value="<?php echo html_escape($category->description); ?>" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?>> </div> <div class="form-group"> <label class="control-label"><?php echo trans('keywords'); ?> (<?php echo trans('meta_tag'); ?>)</label> <input type="text" class="form-control" name="keywords" placeholder="<?php echo trans('keywords'); ?> (<?php echo trans('meta_tag'); ?>)" value="<?php echo html_escape($category->keywords); ?>" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?>> </div> <div class="form-group"> <label><?php echo trans('order'); ?></label> <input type="number" class="form-control" name="category_order" placeholder="<?php echo trans('order'); ?>" value="<?php echo html_escape($category->category_order); ?>" min="1" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> </div> </div> <!-- /.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> <!-- /.box --> </div> </div>