?
Current Path : /home1/savoy/public_html/savoyglobal.net/hr/application/views/Timesheet/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/hr/application/views/Timesheet/view_internal_timesheet.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <div class="select-bar"> <label> <img src="<?=base_url()?>assets/images/add-icon.png" title="Add New" class="clickimage" onclick="addformdisplay('add_internal_timesheet','Timesheet')" alt="Add New" align = "center" width="25" height="25" /> </label> </div> <div id="searchdiv"> <?php $attributes=array('id'=>'searchvalidateform','class'=>'customForm'); echo form_open('timesheet/viewintimesheetsearch/search_internal_timesheet/view_internal_timesheet/1',$attributes); if(isset($_SESSION['searchdata'])) { $searchdata=$_SESSION['searchdata']; if(!empty($searchdata)) { $searchtext=$searchdata['searchtext']; $searchfield=$searchdata['searchopt']; } else { $searchtext = ""; $searchfield = ""; } } else { $searchtext = ""; $searchfield = ""; } ?> Search For <input type="text" name="searchtext" id="searchtext" value="<?=$searchtext;?>"> In <select name="searchopt" id="searchopt"> <option value="job_code">Select</option> <option <?php if ($searchfield == "internal_job_code") echo "selected"; ?> value="job_code">Job Code</option> <option <?php if ($searchfield == "camp_name") echo "selected"; ?> value="camp_name">Camp Name</option> <option <?php if ($searchfield == "internal_timesheet_submission_date") echo "selected"; ?> value="internal_timesheet_submission_date">Timesheet Submission Date</option> <option <?php if ($searchfield == "internal_timesheet_start_date") echo "selected"; ?> value="internal_timesheet_start_date">Timesheet Start date</option> <option <?php if ($searchfield == "internal_timesheet_end_date") echo "selected"; ?> value="internal_timesheet_end_date">Timesheet End date</option> </select> <input type="submit" id="button1" onclick="addformdata('searchvalidateform')" class="clickimage" value="Search"/> <?php echo form_close(); ?> </div> <table class="sort" cellpadding="0" cellspacing="0"> <caption>Internal Timesheet</caption> <thead> <tr> <th>Sl No</th> <th>Job Code</th> <th>Camp Name</th> <th>Timesheet Submission Date</th> <th>Timesheet Start Date</th> <th>Timesheet End Date</th> <th width="10%">Action</th> </tr> </thead> <tbody> <?php if ($viewinfo->num_rows() > 0) { $table=""; $field=""; $z=1; foreach ($viewinfo->result() as $row) { if($z%2==0) $alt="alt"; else $alt="alt1"; echo '<tr class="'.$alt.'"> <td>'.$id.'</td>'; ?> <td><a href="#" onclick="displayformdata('timesheet','single_page','<?=$row->internal_timesheet_id;?>','payroll_internal_timesheet','internal_timesheet_id','single_internal_timesheet')" ><?=$row->internal_job_code;?></a></td> <?php echo '<td>'.$row->camp_name.'</td> <td>'.$this->mastermodel->convertdatenormalformat($row->internal_timesheet_submission_date).'</td> <td>'.$this->mastermodel->convertdatenormalformat($row->internal_timesheet_start_date).'</td> <td>'.$this->mastermodel->convertdatenormalformat($row->internal_timesheet_end_date).'</td>'; ?> <td> <div id="console_fronticons_4"> <div class="fronticons"> <a class="inliexample2" href="#" onclick="enter_internal_timesheet('<?=$row->internal_timesheet_id;?>')" ><img src="<?=base_url()?>assets/images/blueup.jpg" title="Timesheet" width="20" height="20" alt="Upload" align = "center" class="clickimage" /></a> </div> <div class="fronticons"> <a class="inliexample2" href="#" onclick="display_internal_timesheet('<?=$row->internal_timesheet_id;?>')" ><img src="<?=base_url()?>assets/images/bluedown.jpg" title="View Timesheet Details" width="20" height="20" alt="View Timesheet Details" align = "center" class="clickimage" /></a> </div> <div class="fronticons"> <img src="<?=base_url()?>assets/images/edit-icon.gif" title="Edit" width="20" height="20" alt="Edit" align = "center" class="clickimage" onclick="editformdata('timesheet','edit_page','<?=$row->internal_timesheet_id;?>','payroll_internal_timesheet','internal_timesheet_id','edit_internal_timesheet')" alt="" /> </div> <div class="fronticons"> <img src="<?=base_url()?>assets/images/delete-icon.png" title="Delete" width="20" height="20" onclick="deletedata('payroll_internal_timesheet',<?=$row->internal_timesheet_id;?>,'internal_timesheet_id','timesheet','viewintimesheetsearch','search_internal_timesheet','view_internal_timesheet','<?=$table?>','<?=$field?>')" alt="Delete" align = "center"/> </div> </div> </td> <?php $id++; $z++; } } ?> </tbody> </table> <div style="display: none;"> <div id="timesheet_details"></div> </div> <div id="pager"> <ul id="pagination-digg"> <li <?php if($pagenum>1){ ?>class="previous" <?php } else { ?> class="previous-off" <?php } ?> > <?php if($pagenum>1){ ?><a href="#" onclick="viewdata('timesheet','viewintimesheetsearch','search_internal_timesheet','view_internal_timesheet',<?=$pagenum-1?>);" > <?php } ?> «Previous </a> </li> <?php //Pagination Numbers for($i=$startpage; $i<=$endpage; $i++) { if($pagenum==$i ) { ?> <li class="active" ><?=$i?></li> <?php } else { ?> <li><a href="#" onclick="viewdata('timesheet','viewintimesheetsearch','search_internal_timesheet','view_internal_timesheet',<?=$i?>);"><?=$i?></a></li> <?php } } ?> <li <?php if($pagenum<$endpage){ ?> class="next" <?php } else { ?> class="next-off" <?php } ?>> <?php if($pagenum<$endpage){ ?><a href="#" onclick="viewdata('timesheet','viewintimesheetsearch','search_internal_timesheet','view_internal_timesheet',<?=$pagenum+1?>);"> <?php } ?> Next » </a> </li> </ul> </div>