ok
Direktori : /home2/selectio/public_html/bharath/application/views/admin/front/menus/ |
Current File : /home2/selectio/public_html/bharath/application/views/admin/front/menus/index.php |
<!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> <i class="fa fa-empire"></i> <?php echo $this->lang->line('front_cms'); ?> </h1> </section> <!-- Main content --> <section class="content"> <div class="row"> <?php if ($this->rbac->hasPrivilege('menus', 'can_add')) { ?> <div class="col-md-4"> <!-- Horizontal Form --> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $this->lang->line('add_menu'); ?></h3> </div><!-- /.box-header --> <!-- form start --> <form id="form1" action="<?php echo site_url('admin/front/menus') ?>" id="employeeform" name="employeeform" method="post" accept-charset="utf-8"> <div class="box-body"> <?php if ($this->session->flashdata('msg')) { ?> <?php echo $this->session->flashdata('msg') ?> <?php } ?> <?php if (isset($error_message)) { echo "<div class='alert alert-danger'>" . $error_message . "</div>"; } ?> <?php echo $this->customlib->getCSRF(); ?> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('menu'); ?></label> <small class="req">*</small> <input autofocus="" id="menu" name="menu" placeholder="" type="text" class="form-control" value="<?php echo set_value('menu'); ?>" /> <span class="text-danger"><?php echo form_error('menu'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('description'); ?></label> <textarea class="form-control" id="description" name="description" placeholder="" rows="3" placeholder=""><?php echo set_value('description'); ?></textarea> <span class="text-danger"><?php echo form_error('description'); ?></span> </div> </div><!-- /.box-body --> <div class="box-footer"> <button type="submit" class="btn btn-info pull-right"><?php echo $this->lang->line('save'); ?></button> </div> </form> </div> </div><!--/.col (right) --> <!-- left column --> <?php } ?> <div class="col-md-<?php if ($this->rbac->hasPrivilege('menus', 'can_add')) { echo "8"; } else { echo "12"; } ?>"> <!-- general form elements --> <div class="box box-primary" id="holist"> <div class="box-header ptbnull"> <h3 class="box-title titlefix"><?php echo $this->lang->line('menu_list'); ?></h3> </div><!-- /.box-header --> <div class="box-body"> <div class="mailbox-controls"> <div class="pull-right"> </div><!-- /.pull-right --> </div> <div class="table-responsive mailbox-messages"> <div class="download_label"><?php echo $this->lang->line('menu_list'); ?></div> <table class="table table-striped table-bordered table-hover"> <thead> <tr> <th><?php echo $this->lang->line('title'); ?></th> <th class="text-right no-print"> <?php echo $this->lang->line('action'); ?> </th> </tr> </thead> <tbody> <?php if (empty($listMenus)) { ?> <?php } else { $count = 1; foreach ($listMenus as $menu) { ?> <tr id="<?php echo $menu["id"]; ?>"> <td class="mailbox-name"> <a href="#" data-toggle="popover" class="detail_popover"><?php echo $menu['menu'] ?></a> <div class="fee_detail_popover" style="display: none"> <?php if ($menu['description'] == "") { ?> <p class="text text-danger"><?php echo $this->lang->line('no_description'); ?></p> <?php } else { ?> <p class="text text-info"><?php echo $menu['description']; ?></p> <?php } ?> </div> </td> <td class="mailbox-date pull-right no-print"> <?php if ($this->rbac->hasPrivilege('menus', 'can_add')) { ?> <a href="<?php echo site_url('admin/front/menus/additem/' . $menu['slug']); ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('add_menu_item'); ?>"> <i class="fa fa-plus"></i> </a> <?php } if ($this->rbac->hasPrivilege('menus', 'can_delete')) { ?> <?php if ($menu['content_type'] != "default") { ?> <a href="<?php echo site_url('admin/front/menus/delete/' . $menu['slug']); ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('delete'); ?>" onclick="return confirm('<?php echo $this->lang->line('delete_confirm') ?>');"> <i class="fa fa-remove"></i> </a> <?php } } ?> </td> </tr> <?php } $count++; } ?> </tbody> </table><!-- /.table --> </div><!-- /.mail-box-messages --> </div><!-- /.box-body --> </div> </div><!--/.col (left) --> </div> </section><!-- /.content --> </div><!-- /.content-wrapper --> <script type="text/javascript"> $(document).ready(function () { $('#postdate').datepicker({ format: "dd-mm-yyyy", autoclose: true }); }); $(document).ready(function () { $('.detail_popover').popover({ placement: 'right', trigger: 'hover', container: 'body', html: true, content: function () { return $(this).closest('td').find('.fee_detail_popover').html(); } }); }); </script>