patashala/application/views/backend/admin/modal_e_routine.php
Vivek a53135a78d Added based code
Added base code to the repo
2024-02-07 20:19:28 +05:30

205 lines
11 KiB
PHP
Executable File

<?php
$edit_data = $this->db->get_where('horarios_examenes' , array('horario_id' => $param2) )->result_array();
foreach($edit_data as $row):?>
<br>
<?php echo form_open(base_url() . 'admin/exam_routine/update/'.$row['horario_id'] , array('class' => 'form-horizontal validatable','target'=>'_top'));?>
<div class="form-group row">
<label class="col-sm-4 col-form-label" for=""> <?php echo get_phrase('class');?></label>
<div class="col-sm-8">
<div class="input-group">
<div class="input-group-addon">
<i class="picons-thin-icon-thin-0003_write_pencil_new_edit"></i>
</div>
<select class="form-control" name="class_id" disabled>
<option value=""><?php echo get_phrase('select');?></option>
<?php $cl = $this->db->get('class')->result_array();
foreach($cl as $row2): ?>
<option value="<?php echo $row2['class_id'];?>" <?php if($row['class_id']==$row2['class_id'])echo 'selected';?>><?php echo $row2['name'];?></option>
<?php endforeach;?>
</select>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-sm-4" for=""> <?php echo get_phrase('section');?></label>
<div class="col-sm-8">
<div class="input-group">
<div class="input-group-addon">
<i class="picons-thin-icon-thin-0003_write_pencil_new_edit"></i>
</div>
<select class="form-control" name="section_id" disabled>
<?php $sec = $this->db->get_where('section', array('class_id' => $row['class_id']))->result_array();
foreach($sec as $row3): ?>
<option value="<?php echo $row3['section_id'];?>" <?php if($row['section_id'] == $row3['section_id'])echo 'selected';?>><?php echo $row3['name'];?></option>
<?php endforeach;?>
</select>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-sm-4" for=""> <?php echo get_phrase('subject');?></label>
<div class="col-sm-8">
<div class="input-group">
<div class="input-group-addon">
<i class="picons-thin-icon-thin-0003_write_pencil_new_edit"></i>
</div>
<select class="form-control" name="subject_id" disabled>
<?php $sec = $this->db->get_where('subject', array('class_id' => $row['class_id']))->result_array();
foreach($sec as $row4): ?>
<option value="<?php echo $row4['subject_id'];?>" <?php if($row['subject_id'] == $row4['subject_id'])echo 'selected';?>><?php echo $row4['name'];?></option>
<?php endforeach;?>
</select>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-sm-4" for=""> <?php echo get_phrase('day');?></label>
<div class="col-sm-8">
<div class="input-group">
<div class="input-group-addon">
<i class="picons-thin-icon-thin-0024_calendar_month_day_planner_events"></i>
</div>
<select name="day" class="form-control" required="">
<option value=""><?php echo get_phrase('select');?></option>
<?php
$days = $this->db->get_where('academic_settings', array('type' => 'routine'))->row()->description;
if($days == 1):?>
<option value="Sunday" <?php if($row['day']== "Sunday") echo "selected";?>><?php echo get_phrase('sunday');?></option>
<?php endif;?>
<option value="Monday" <?php if($row['day']== "Monday") echo "selected";?>><?php echo get_phrase('monday');?></option>
<option value="Tuesday" <?php if($row['day']== "Tuesday") echo "selected";?>><?php echo get_phrase('tuesday');?></option>
<option value="Wednesday" <?php if($row['day']== "Wednesday") echo "selected";?>><?php echo get_phrase('wednesday');?></option>
<option value="Thursday" <?php if($row['day']== "Thursday") echo "selected";?>><?php echo get_phrase('thursday');?></option>
<option value="Friday" <?php if($row['day']== "Friday") echo "selected";?>><?php echo get_phrase('friday');?></option>
<?php if($days == 1):?>
<option value="Saturday" <?php if($row['day']== "Saturday") echo "selected";?>><?php echo get_phrase('saturday');?></option>
<?php endif;?>
</select>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-sm-4" for=""> <?php echo get_phrase('time_start');?></label>
<div class="col-sm-3">
<?php
if($row['time_start'] < 13)
{
$time_start = $row['time_start'];
$time_start_min = $row['time_start_min'];
$starting_ampm = 1;
}
else if($row['time_start'] > 12)
{
$time_start = $row['time_start'] - 12;
$time_start_min = $row['time_start_min'];
$starting_ampm = 2;
}
?>
<div class="input-group">
<div class="input-group-addon">
<i class="picons-thin-icon-thin-0029_time_watch_clock_wall"></i>
</div>
<select name="time_start" class="form-control" required>
<option value=""><?php echo get_phrase('hour');?></option>
<?php for($i = 0; $i <= 12 ; $i++):?>
<option value="<?php echo $i;?>" <?php if($i ==$time_start)echo "selected";?>><?php echo $i;?></option>
<?php endfor;?>
</select>
</div>
</div>
<div class="col-sm-3">
<div class="input-group">
<select name="time_start_min" class="form-control" required>
<option value=""><?php echo get_phrase('minutes');?></option>
<?php for($i = 0; $i <= 11 ; $i++):?>
<option value="<?php $n = $i * 5; if($n < 10) echo '0'.$n; else echo $n;?>" <?php if (($i * 5) == $time_start_min) echo 'selected';?>><?php $n = $i * 5; if($n < 10) echo '0'.$n; else echo $n;?></option>
<?php endfor;?>
</select>
</div>
</div>
<div class="col-sm-2">
<div class="input-group">
<select class="form-control" name="starting_ampm" required>
<option value="1" <?php if($starting_ampm == '1') echo "selected";?>>AM</option>
<option value="2" <?php if($starting_ampm == '2') echo "selected";?>>PM</option>
</select>
</div>
</div>
</div>
<div class="form-group row">
<label class="col-form-label col-sm-4" for=""> <?php echo get_phrase('time_end');?></label>
<div class="col-sm-3">
<?php
if($row['time_end'] < 13)
{
$time_end = $row['time_end'];
$time_end_min = $row['time_end_min'];
$ending_ampm = 1;
}
else if($row['time_end'] > 12)
{
$time_end = $row['time_end'] - 12;
$time_end_min = $row['time_end_min'];
$ending_ampm = 2;
}
?>
<div class="input-group">
<div class="input-group-addon">
<i class="picons-thin-icon-thin-0029_time_watch_clock_wall"></i>
</div>
<select name="time_end" class="form-control" required>
<option value=""><?php echo get_phrase('hour');?></option>
<?php for($i = 0; $i <= 12 ; $i++):?>
<option value="<?php echo $i;?>" <?php if($i ==$time_end) echo "selected";?>><?php echo $i;?></option>
<?php endfor;?>
</select>
</div>
</div>
<div class="col-sm-3">
<div class="input-group">
<select name="time_end_min" class="form-control" required>
<option value=""><?php echo get_phrase('minutes');?></option>
<?php for($i = 0; $i <= 11 ; $i++):?>
<option value="<?php $n = $i * 5; if($n < 10) echo '0'.$n; else echo $n;?>" <?php if (($i * 5) == $time_end_min) echo 'selected';?>><?php $n = $i * 5; if($n < 10) echo '0'.$n; else echo $n;?></option>
<?php endfor;?>
</select>
</div>
</div>
<div class="col-sm-2">
<div class="input-group">
<select class="form-control" required="" name="ending_ampm">
<option value="1" <?php if($ending_ampm == '1') echo "selected";?>>AM</option>
<option value="2" <?php if($ending_ampm == '2') echo "selected";?>>PM</option>
</select>
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-rounded btn-success" type="submit"> <?php echo get_phrase('update');?></button>
</div>
<?php echo form_close();?>
<?php endforeach; ?>
<style>
.datepicker{z-index:1151 !important;}
</style>