Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
aa
/
application
/
views
/
admin
/
onlineexam
✏️
Editing: _getexamquestions.php
<script src="<?php echo base_url() ?>backend/plugins/ckeditor/plugins/ckeditor_wiris/integration/WIRISplugins.js?viewer=image"></script> <style type="text/css"> .inpwidth40{width: 50px;height: 20px;} </style> <?php if (!empty($questions)) { ?> <ul class="nav nav-pills subject_pills pull-right mb10"> <li class="active"><a href="#" data-subject-id="0">All</a></li> <?php foreach ($questionSubjects as $questionSubjects_key => $questionSubjects_value) { ?> <li><a href="#" data-subject-id="<?php echo $questionSubjects_value->subject_id; ?>"><?php echo $questionSubjects_value->subject_name; ?></a></li> <?php } ?> </ul> <?php foreach ($questions as $question_key => $question_value) { ?> <div class="question_row_<?php echo $question_value->onlineexam_question_id;?> subject_div_<?php echo $question_value->subject_id;?>" > <div class="row"> <div class="col-xs-12 col-md-12"> <div class="text text-danger pull-left"> <!-- Button trigger modal --> <button type="button" class="btn btn-xs del_exam_questionssss" data-toggle="modal" data-target="#mydeleteModal" data-exam-id="<?php echo $exam->exam; ?>" data-onlineexam-question-id="<?php echo $question_value->onlineexam_question_id; ?>"><i class="fa fa-trash" aria-hidden="true"></i></button> </div> <div class="rltpaddleft"> <span class="font-weight-bold"> <?php echo $this->lang->line('q_id')?> : <?php echo $question_value->id;?> </span> <br/> <?php echo $question_value->question; ?> <div class="pt5"> <div class="row"> <div class="col-lg-2 col-md-6 col-sm-12"> <label for="email"><?php echo $this->lang->line('question_type'); ?>:</label> <?php echo ($question_value->question_type != "")?$question_type[$question_value->question_type]:""; ?> </div> <div class="col-lg-2 col-md-6 col-sm-12"> <label for="email"><?php echo $this->lang->line('level');?>:</label> <?php echo ($question_value->level !="")? $question_level[$question_value->level]:""; ?> </div> <div class="col-lg-4 col-md-6 col-sm-12"> <label for="email"><?php echo $this->lang->line('subject') ?>:</label> <?php echo $question_value->subject_name; ?> </div> </div><!--./row--> </div> </div> </div> </div> <div class="hrexamtopbottom"></div> </div> <?php } }else{ ?> <div class="alert alert-info"><?php echo $this->lang->line('no_record_found'); ?></div> <?php } ?> </form>
💾 Save Changes
❌ Cancel