patashala/application/views/backend/student/report_attendance_view.php

110 lines
7.6 KiB
PHP
Raw Normal View History

<?php
$m ="";
$running_year = $this->db->get_where('settings' , array('type' => 'running_year'))->row()->description;
$class_id = $this->db->get_where('enroll' , array('student_id' => $this->session->userdata('login_user_id') , 'year' => $running_year))->row()->class_id;
$section_id = $this->db->get_where('enroll' , array('student_id' => $this->session->userdata('login_user_id') , 'year' => $running_year))->row()->section_id;
?>
<div class="content-w">
<div class="os-tabs-w menu-shad">
<div class="os-tabs-controls">
<ul class="nav nav-tabs upper">
<li class="nav-item">
<a class="nav-link active" href="<?php echo base_url();?>student/attendance_report/"><i class="os-icon picons-thin-icon-thin-0729_student_degree_science_university_school_graduate"></i>
<span><?php echo get_phrase('attendance_report');?></span></a>
</li>
</ul>
</div>
</div>
<div class="content-i">
<div class="content-box">
<div class="element-wrapper">
<?php echo form_open(base_url() . 'student/attendance_report_selector/', array('class' => 'form m-b')); ?>
<div class="row">
<input type="hidden" name="class_id" value="<?php echo $class_id; ?>">
<input type="hidden" name="section_id" value="<?php echo $section_id; ?>">
<input type="hidden" name="operation" value="selection">
<input type="hidden" name="year" value="<?php echo $running_year;?>">
<div class="col-sm-4">
<div class="form-group">
<label class="gi" for=""><?php echo get_phrase('month');?>:</label>
<select name="month" class="form-control selectboxit" id="month" onchange="show_year()">
<?php
for ($i = 1; $i <= 12; $i++):
if ($i == 1) $m = get_phrase('january');
else if ($i == 2) $m = get_phrase('february');
else if ($i == 3) $m = get_phrase('march');
else if ($i == 4) $m = get_phrase('april');
else if ($i == 5) $m = get_phrase('may');
else if ($i == 6) $m = get_phrase('june');
else if ($i == 7) $m = get_phrase('july');
else if ($i == 8) $m = get_phrase('august');
else if ($i == 9) $m = get_phrase('september');
else if ($i == 10) $m = get_phrase('october');
else if ($i == 11) $m = get_phrase('november');
else if ($i == 12) $m = get_phrase('december');
?>
<option value="<?php echo $i; ?>"<?php if($month == $i) echo 'selected'; ?> ><?php echo $m; ?></option>
<?php endfor;?>
</select>
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<button class="btn btn-rounded btn-success btn-upper" style="margin-top:20px"><span><?php echo get_phrase('generate');?></span></button>
</div>
</div>
</div>
<?php echo form_close();?>
<?php if ($class_id != '' && $section_id != '' && $month != ''): ?>
<div class="element-box lined-primary shadow">
<div class="row">
<div class="col-7 text-left">
<h5 class="form-header"><?php echo get_phrase('attendance_report');?></h5>
</div>
</div>
<div class="table-responsive">
<table class="table table-sm table-lightborder">
<thead>
<tr class="text-center" height="50px">
<th class="text-left"> <?php echo get_phrase('student');?></th>
<?php
$year = explode('-', $running_year);
$days = cal_days_in_month(CAL_GREGORIAN, $month, $year[0]);
for ($i = 1; $i <= $days; $i++) {
?>
<th class="text-center"> <?php echo $i; ?> </th>
<?php } ?>
</tr>
</thead>
<tbody>
<tr>
<td><img alt="" src="<?php echo $this->crud_model->get_image_url($this->session->userdata('login_type'), $this->session->userdata('login_user_id'));?>" width="20px" style="border-radius:20px;margin-right:5px;"> <?php echo $this->db->get_where('student', array('student_id' => $this->session->userdata('login_user_id')))->row()->name; ?> </td>
<?php
$status = 0;
for ($i = 1; $i <= $days; $i++) {
$timestamp = strtotime($i . '-' . $month . '-' . $year[0]);
$this->db->group_by('timestamp');
$attendance = $this->db->get_where('attendance', array('section_id' => $section_id, 'class_id' => $class_id, 'year' => $running_year, 'timestamp' => $timestamp, 'student_id' => $this->session->userdata('login_user_id')))->result_array();
foreach ($attendance as $row1): $month_dummy = date('d', $row1['timestamp']);
if ($i == $month_dummy) $status = $row1['status'];
endforeach; ?>
<td class="text-center">
<?php if ($status == 1) { ?>
<div class="status-pilli green" data-title="Present" data-toggle="tooltip"></div>
<?php } if($status == 2) { ?>
<div class="status-pilli red" data-title="Absent" data-toggle="tooltip"></div>
<?php } if($status == 3) { ?>
<div class="status-pilli yellow" data-title="Late" data-toggle="tooltip"></div>
<?php } $status =0;?>
</td>
<?php } ?>
</tr>
</tbody>
</table>
</div>
</div>
<?php endif;?>
</div>
</div>
</div>
</div>