ok
Direktori : /home2/selectio/www/bharath/application/views/user/syllabus/ |
Current File : /home2/selectio/www/bharath/application/views/user/syllabus/_get_weekdates.php |
<style type="text/css"> .attachment-block .text-green{color:#3498db !important} </style> <div class="col-md-12"> <div class="box box-warning"> <div class="box-header ptbnull"> <h3 class="box-title titlefix"> <?php echo $this->lang->line('lesson_plan'); ?></h3> </div> <div class="box-header "> <?php $next_date = date_create($this_week_end); date_add($next_date, date_interval_create_from_date_string('+1 days')); $next_weekstartdate= date_format($next_date, $this->customlib->getSchoolDateFormat()); $pre_date = date_create($this_week_start); date_add($pre_date, date_interval_create_from_date_string('-1 days')); $pre_weekstartdate= date_format($pre_date, $this->customlib->getSchoolDateFormat()); ?> <div class="box-header text-center"> <i class="fa fa-angle-left datearrow" onclick="get_weekdates('pre_week','<?php echo $pre_weekstartdate; ?>')"></i><h3 class="box-title bmedium"> <?php echo $this_week_start." ".$this->lang->line('to')." ".$this_week_end; ?></h3> <i class="fa fa-angle-right datearrow" onclick="get_weekdates('next_week','<?php echo $next_weekstartdate; ?>')"></i> </div> </div> <div class="box-body"> <div class="table-responsive"> <div class="download_label"><?php echo $this->lang->line('class_timetable'); ?></div> <?php $record_flag = 0; if (!empty($timetable)) { ?> <table class="table table-stripped"> <thead> <tr> <?php $counter1=0;$this_week_start1=$this_week_start; foreach ($timetable as $tm_key => $tm_value) { //print_r($tm_key);die; if($counter1!=0){ $date1 = date_create($this_week_start1); date_add($date1, date_interval_create_from_date_string('+1 days')); $today1= date_format($date1, 'Y-m-d'); $this_week_start1=$today1; $new_date1= date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($today1)); }else{ $new_date1= $this_week_start; }$counter1++; ?> <th class="text text-center"><?php echo $this->lang->line(strtolower($tm_key)); ?><br><span class="bmedium"><?php echo $new_date1; ?></span></th> <?php } ?> </tr> </thead> <tbody> <tr> <?php $counter=0; foreach ($timetable as $tm_key => $tm_value) { if($counter!=0){ $date = date_create($this_week_start); date_add($date, date_interval_create_from_date_string('+1 days')); $today= date_format($date, 'Y-m-d'); $this_week_start=$today; $new_date= date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($today)); }else{ $new_date= $this_week_start; }$counter++; ?> <td class="text text-center" width="14%"> <?php if (!$timetable[$tm_key]) { ?> <div class="attachment-block clearfix "> <b class="text text-center"><?php echo $this->lang->line('not'); ?> <br><?php echo $this->lang->line('scheduled'); ?></b><br> </div> <?php } else { foreach ($timetable[$tm_key] as $tm_k => $tm_kue) { $subject_group_subject_class_section=$this->lessonplan_model->getsubject_group_class_sectionsId($tm_kue->class_id,$tm_kue->section_id,$tm_kue->subject_group_id); $data['subject_group_subject_id'] = $tm_kue->subject_group_subject_id; $data['date'] = date('Y-m-d', strtotime($new_date));; $data['time_from'] = $tm_kue->time_from; $data['time_to'] = $tm_kue->time_to; $data['subject_group_class_section_id'] = $subject_group_subject_class_section['id']; $res_subject_syllabus=$this->syllabus_model->get_subject_syllabus_student($data); if(!empty($res_subject_syllabus)){ $record_color = "red"; }else { if($record_flag == 0){ $record_color = "green"; $record_flag = 1; }else{ $record_color = "yellow"; $record_flag = 0; } } ?> <div class = "attachment-block clearfix handcursor" onclick="get_subject_syllabus('<?php echo $tm_kue->subject_group_subject_id;?>','<?php echo $new_date; ?>','<?php echo $tm_kue->time_from;?>','<?php echo $tm_kue->time_to;?>','<?php echo $subject_group_subject_class_section['id'];?>')"> <b class="text-<?php echo $record_color; ?>"><?php echo $this->lang->line('subject') ?>: <?php echo $tm_kue->subject_name; if($tm_kue->code!=''){ echo " (" . $tm_kue->code . ")"; } ?> </b><br> <strong class="text-<?php echo $record_color; ?>"><?php echo $tm_kue->time_from ?></strong> <b class="text text-<?php echo $record_color; ?>">-</b> <strong class="text-<?php echo $record_color; ?>"><?php echo $tm_kue->time_to; ?></strong><br> <strong class="text-<?php echo $record_color; ?>"><?php echo $this->lang->line('room_no'); ?>: <?php echo $tm_kue->room_no; ?></strong><br> </div> <?php } } ?> </td> <?php } ?> </tr> </tbody> </table> <?php } ?> </div> </div> </div> </div>