PHP Classes

File: application/views/roomSizes/roomSizeIndex.php

Recommend this page to a friend!
  Classes of Kishor Mali   PHP Hotel Booking System   application/views/roomSizes/roomSizeIndex.php   Download  
File: application/views/roomSizes/roomSizeIndex.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Hotel Booking System
Manage the booking of hotel rooms for customers
Author: By
Last change:
Date: 2 months ago
Size: 4,173 bytes
 

Contents

Class file image Download
<div class="content-wrapper">
    <!-- Content Header (Page header) -->
    <section class="content-header">
      <h1>
        Room Size Management
        <small>Add, Edit, Delete</small>
        <span class='pull-right'><a class="btn btn-primary" href="<?php echo base_url(); ?>addNewRoomSize"><i class="fa fa-plus" aria-hidden="true"></i> Add New Room Size</a></span>
      </h1>
    </section>
    <section class="content">
        <!-- <div class="row">
            <div class="col-xs-12 text-right">
                <div class="form-group">
                    <a class="btn btn-primary" href="<?php echo base_url(); ?>addNewRoomSize"><i class="fa fa-plus" aria-hidden="true"></i> Add New Room Size</a>
                </div>
            </div>
        </div> -->
        <div class="row">
            <div class="col-xs-12">
              <div class="box">
                <div class="box-header">
                    <h3 class="box-title">Room Size</h3>
                    <div class="box-tools">
                        <form action="<?php echo base_url() ?>roomSizesListing" method="POST" id="searchList">
                            <div class="input-group">
                              <input type="text" name="searchText" value="<?php echo $searchText; ?>" class="form-control input-sm pull-right" style="width: 150px;" placeholder="Search"/>
                              <div class="input-group-btn">
                                <button class="btn btn-sm btn-default searchList"><i class="fa fa-search"></i></button>
                                <button class="btn btn-sm btn-default resetFilters"><i class="fa fa-refresh"></i></button>
                              </div>
                            </div>
                        </form>
                    </div>
                </div><!-- /.box-header -->
                <div class="box-body table-responsive no-padding">
                  <table class="table table-hover">
                    <tr>
                      <th>Id</th>
                      <th>Size Title</th>
                      <th>Size Description</th>
                      <th class="text-center">Actions</th>
                    </tr>
                    <?php
                   
if(!empty($roomSizesRecords))
                    {
                        foreach(
$roomSizesRecords as $record)
                        {
                   
?>
<tr>
                      <td><?php echo $record->sizeId ?></td>
                      <td><?php echo $record->sizeTitle ?></td>
                      <td><?php echo $record->sizeDescription ?></td>
                      <td width="10%" class="text-center">
                          <a href="<?php echo base_url().'editOldRoomSize/'.$record->sizeId; ?>" class="btn btn-info btn-sm"><i class="fa fa-pencil"></i></a>
                          <a href="" data-roomsizeid="<?php echo $record->sizeId; ?>" class="deleteRoomSize btn btn-danger btn-sm"><i class="fa fa-trash"></i></a>
                      </td>
                    </tr>
                    <?php
                       
}
                    }
                   
?>
</table>
                 
                </div><!-- /.box-body -->
                <div class="box-footer clearfix">
                    <?php echo $this->pagination->create_links(); ?>
</div>
              </div><!-- /.box -->
            </div>
        </div>
    </section>
</div>
<script type="text/javascript" src="<?php echo base_url(); ?>assets/js/common.js" charset="utf-8"></script>
<script type="text/javascript">
    jQuery(document).ready(function(){
        jQuery('ul.pagination li a').click(function (e) {
            e.preventDefault();
            var link = jQuery(this).get(0).href;
            var value = link.substring(link.lastIndexOf('/') + 1);
            jQuery("#searchList").attr("action", baseURL + "roomSizeListing/" + value);
            jQuery("#searchList").submit();
        });
        jQuery('.resetFilters').click(function(){
          $(this).closest('form').find("input[type=text]").val("");
        });
    });
</script>