File Manager
Create Folder
Create File
Upload File
Home
/ Directory >
/
home1
/
swachhmaharashtr
/
public_html
/
app
/
views
/
partials
/
odfprotocol
Item Name
Actions
add.php
Delete
Rename
Edit
edit.php
Delete
Rename
Edit
list.php
Delete
Rename
Edit
view.php
Delete
Rename
Edit
Edit File: view.php
<?php $comp_model = new SharedController; $page_element_id = "view-page-" . random_str(); $current_page = $this->set_current_page_link(); $csrf_token = Csrf::$token; //Page Data Information from Controller $data = $this->view_data; //$rec_id = $data['__tableprimarykey']; $page_id = $this->route->page_id; //Page id from url $view_title = $this->view_title; $show_header = $this->show_header; $show_edit_btn = $this->show_edit_btn; $show_delete_btn = $this->show_delete_btn; $show_export_btn = $this->show_export_btn; ?> <section class="page" id="<?php echo $page_element_id; ?>" data-page-type="view" 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"> <div class="row "> <div class="col "> <h4 class="record-title">View Odfprotocol</h4> </div> </div> </div> </div> <?php } ?> <div class=""> <div class="container"> <div class="row "> <div class="col-md-12 comp-grid"> <?php $this :: display_page_errors(); ?> <div class="card animated fadeIn page-content"> <?php $counter = 0; if(!empty($data)){ $rec_id = (!empty($data['id']) ? urlencode($data['id']) : null); $counter++; ?> <div id="page-report-body" class=""> <table class="table table-hover table-borderless table-striped"> <!-- Table Body Start --> <tbody class="page-data" id="page-data-<?php echo $page_element_id; ?>"> <tr class="td-id"> <th class="title"> Id: </th> <td class="value"> <?php echo $data['id']; ?></td> </tr> <tr class="td-tital"> <th class="title"> Tital: </th> <td class="value"> <span data-value="<?php echo $data['tital']; ?>" data-pk="<?php echo $data['id'] ?>" data-url="<?php print_link("odfprotocol/editfield/" . urlencode($data['id'])); ?>" data-name="tital" data-title="Enter Tital" data-placement="left" data-toggle="click" data-type="text" data-mode="popover" data-showbuttons="left" class="is-editable" > <?php echo $data['tital']; ?> </span> </td> </tr> <tr class="td-filepath"> <th class="title"> Filepath: </th> <td class="value"> <span data-value="<?php echo $data['filepath']; ?>" data-pk="<?php echo $data['id'] ?>" data-url="<?php print_link("odfprotocol/editfield/" . urlencode($data['id'])); ?>" data-name="filepath" data-title="Browse..." data-placement="left" data-toggle="click" data-type="text" data-mode="popover" data-showbuttons="left" class="is-editable" > <?php echo $data['filepath']; ?> </span> </td> </tr> </tbody> <!-- Table Body End --> </table> </div> <div class="p-3 d-flex"> <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> <a class="btn btn-sm btn-info" href="<?php print_link("odfprotocol/edit/$rec_id"); ?>"> <i class="fa fa-edit"></i> Edit </a> <a class="btn btn-sm btn-danger record-delete-btn mx-1" href="<?php print_link("odfprotocol/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> </div> <?php } else{ ?> <!-- Empty Record Message --> <div class="text-muted p-3"> <i class="fa fa-ban"></i> No Record Found </div> <?php } ?> </div> </div> </div> </div> </div> </section>