File Manager
Create Folder
Create File
Upload File
Home
/ Directory >
/
home1
/
swachhmaharashtr
/
public_html
/
app
/
views
/
partials
/
home
Item Name
Actions
add.php
Delete
Rename
Edit
edit.php
Delete
Rename
Edit
index.php
Delete
Rename
Edit
list.php
Delete
Rename
Edit
view.php
Delete
Rename
Edit
Edit File: list.php
<?php $comp_model = new SharedController; $page_element_id = "list-page-" . random_str(); $current_page = $this->set_current_page_link(); $csrf_token = Csrf::$token; //Page Data From Controller $view_data = $this->view_data; $records = $view_data->records; $record_count = $view_data->record_count; $total_records = $view_data->total_records; $field_name = $this->route->field_name; $field_value = $this->route->field_value; $view_title = $this->view_title; $show_header = $this->show_header; $show_footer = $this->show_footer; $show_pagination = $this->show_pagination; ?> <section class="page" id="<?php echo $page_element_id; ?>" data-page-type="list" data-display-type="table" data-page-url="<?php print_link($current_page); ?>"> <?php if( $show_header == true ){ ?> <div class="bg-light p-3 mb-3"> <div class="container-fluid"> <div class="row "> <div class="col "> <h4 class="record-title">Home</h4> </div> <div class="col-sm-3 "> <a class="btn btn btn-primary my-1" href="<?php print_link("home/add") ?>"> <i class="fa fa-plus"></i> Add New Home </a> </div> <div class="col-sm-4 "> <form class="search" action="<?php print_link('home'); ?>" method="get"> <div class="input-group"> <input value="<?php echo get_value('search'); ?>" class="form-control" type="text" name="search" placeholder="Search" /> <div class="input-group-append"> <button class="btn btn-primary"><i class="fa fa-search"></i></button> </div> </div> </form> </div> <div class="col-md-12 comp-grid"> <div class=""> <!-- Page bread crumbs components--> <?php if(!empty($field_name) || !empty($_GET['search'])){ ?> <hr class="sm d-block d-sm-none" /> <nav class="page-header-breadcrumbs mt-2" aria-label="breadcrumb"> <ul class="breadcrumb m-0 p-1"> <?php if(!empty($field_name)){ ?> <li class="breadcrumb-item"> <a class="text-decoration-none" href="<?php print_link('home'); ?>"> <i class="fa fa-angle-left"></i> </a> </li> <li class="breadcrumb-item"> <?php echo (get_value("tag") ? get_value("tag") : make_readable($field_name)); ?> </li> <li class="breadcrumb-item active text-capitalize font-weight-bold"> <?php echo (get_value("label") ? get_value("label") : make_readable(urldecode($field_value))); ?> </li> <?php } ?> <?php if(get_value("search")){ ?> <li class="breadcrumb-item"> <a class="text-decoration-none" href="<?php print_link('home'); ?>"> <i class="fa fa-angle-left"></i> </a> </li> <li class="breadcrumb-item text-capitalize"> Search </li> <li class="breadcrumb-item active text-capitalize font-weight-bold"><?php echo get_value("search"); ?></li> <?php } ?> </ul> </nav> <!--End of Page bread crumbs components--> <?php } ?> </div> </div> </div> </div> </div> <?php } ?> <div class=""> <div class="container-fluid"> <div class="row "> <div class="col-md-12 comp-grid"> <?php $this :: display_page_errors(); ?> <div class=" animated fadeIn page-content"> <div id="home-list-records"> <div id="page-report-body" class="table-responsive"> <table class="table table-striped table-sm text-left"> <thead class="table-header bg-light"> <tr> <th class="td-checkbox"> <label class="custom-control custom-checkbox custom-control-inline"> <input class="toggle-check-all custom-control-input" type="checkbox" /> <span class="custom-control-label"></span> </label> </th> <th class="td-Id"> Id</th> <th class="td-silder"> Silder</th> <th class="td-btn"></th> </tr> </thead> <?php if(!empty($records)){ ?> <tbody class="page-data" id="page-data-<?php echo $page_element_id; ?>"> <!--record--> <?php $counter = 0; foreach($records as $data){ $rec_id = (!empty($data['Id']) ? urlencode($data['Id']) : null); $counter++; ?> <tr> <th class=" td-checkbox"> <label class="custom-control custom-checkbox custom-control-inline"> <input class="optioncheck custom-control-input" name="optioncheck[]" value="<?php echo $data['Id'] ?>" type="checkbox" /> <span class="custom-control-label"></span> </label> </th> <td class="td-Id"><a href="<?php print_link("home/view/$data[Id]") ?>"><?php echo $data['Id']; ?></a></td> <td class="td-silder"> <?php echo $data['silder']; ?></td> <th class="td-btn"> <a class="btn btn-sm btn-success has-tooltip" title="View Record" href="<?php print_link("home/view/$rec_id"); ?>"> <i class="fa fa-eye"></i> View </a> <a class="btn btn-sm btn-info has-tooltip" title="Edit This Record" href="<?php print_link("home/edit/$rec_id"); ?>"> <i class="fa fa-edit"></i> Edit </a> <a class="btn btn-sm btn-danger has-tooltip record-delete-btn" title="Delete this record" href="<?php print_link("home/delete/$rec_id/?csrf_token=$csrf_token&redirect=$current_page"); ?>" data-prompt-msg="Are you sure you want to delete this record?" data-display-style="modal"> <i class="fa fa-times"></i> Delete </a> </th> </tr> <?php } ?> <!--endrecord--> </tbody> <tbody class="search-data" id="search-data-<?php echo $page_element_id; ?>"></tbody> <?php } ?> </table> <?php if(empty($records)){ ?> <h4 class="bg-light text-center border-top text-muted animated bounce p-3"> <i class="fa fa-ban"></i> No record found </h4> <?php } ?> </div> <?php if( $show_footer && !empty($records)){ ?> <div class=" border-top mt-2"> <div class="row justify-content-center"> <div class="col-md-auto justify-content-center"> <div class="p-3 d-flex justify-content-between"> <button data-prompt-msg="Are you sure you want to delete these records?" data-display-style="modal" data-url="<?php print_link("home/delete/{sel_ids}/?csrf_token=$csrf_token&redirect=$current_page"); ?>" class="btn btn-sm btn-danger btn-delete-selected d-none"> <i class="fa fa-times"></i> Delete Selected </button> <div class="dropup export-btn-holder mx-1"> <button class="btn btn-sm btn-primary dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="fa fa-save"></i> Export </button> <div class="dropdown-menu" aria-labelledby="dropdownMenuButton"> <?php $export_csv_link = $this->set_current_page_link(array('format' => 'csv')); ?> <a class="dropdown-item export-link-btn" data-format="csv" href="<?php print_link($export_csv_link); ?>" target="_blank"> <img src="<?php print_link('assets/images/csv.png') ?>" class="mr-2" /> CSV </a> <?php $export_excel_link = $this->set_current_page_link(array('format' => 'excel')); ?> <a class="dropdown-item export-link-btn" data-format="excel" href="<?php print_link($export_excel_link); ?>" target="_blank"> <img src="<?php print_link('assets/images/xsl.png') ?>" class="mr-2" /> EXCEL </a> </div> </div> </div> </div> <div class="col"> <?php if($show_pagination == true){ $pager = new Pagination($total_records, $record_count); $pager->route = $this->route; $pager->show_page_count = true; $pager->show_record_count = true; $pager->show_page_limit =true; $pager->limit_count = $this->limit_count; $pager->show_page_number_list = true; $pager->pager_link_range=5; $pager->render(); } ?> </div> </div> </div> <?php } ?> </div> </div> </div> </div> </div> </div> </section>