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
/
question
✏️
Editing: _editform.php
<input type="hidden" name="recordid" value="<?php echo $recordid; ?>"> <div class="row"> <div class="form-group col-md-6"> <label for="subject_id"><?php echo $this->lang->line('subject') ?></label><small class="req"> *</small> <select class="form-control" name="subject_id"> <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($subjectlist as $subject_key => $subject_value) { ?> <option value="<?php echo $subject_value['id']; ?>" <?php echo set_select('subject_id', $subject_value['id'], (set_value('subject_id', $subject_value['id']) == $question_result->subject_id) ? true : false); ?>><?php echo $subject_value['name']; ?></option> <?php } ?> </select> <span class="text text-danger subject_id_error"></span> </div> <div class="form-group col-md-3"> <label for="question_type"><?php echo $this->lang->line('question_type');?></label><small class="req"> *</small> <select class="form-control" name="question_type" id="question_type"> <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($question_type as $question_type_key => $question_type_value) { ?> <option value="<?php echo $question_type_key; ?>" <?php echo set_select('question_type', $question_type_key, (set_value('question_type', $question_type_key) == $question_result->question_type) ? true : false); ?>><?php echo $question_type_value; ?></option> <?php } ?> </select> <span class="text text-danger question_type_error"></span> </div> <div class="form-group col-md-3"> <label for="question_level"><?php echo $this->lang->line('question_level'); ?></label><small class="req"> *</small> <select class="form-control" name="question_level"> <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($question_level as $question_level_key => $question_level_value) { ?> <option value="<?php echo $question_level_key; ?>" <?php echo set_select('question_level', $question_level_key, (set_value('question_level', $question_level_key) == $question_result->level) ? true : false); ?>><?php echo $question_level_value; ?></option> <?php } ?> </select> <span class="text text-danger question_level_error"></span> </div> </div> <div class="row"> <div class="form-group col-md-6"> <label for="class_id"><?php echo $this->lang->line('class') ?></label><small class="req"> *</small> <select class="form-control" name="class_id" id="class_id"> <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($classList as $class_key => $class_value) { ?> <option value="<?php echo $class_value['id']; ?>" <?php echo set_select('class_id', $class_value['id'], (set_value('class_id', $class_value['id']) == $question_result->class_id) ? true : false); ?>><?php echo $class_value['class']; ?></option> <?php } ?> </select> <span class="text text-danger class_id_error"></span> </div> <div class="form-group col-md-6"> <label for="section_id"><?php echo $this->lang->line('section'); ?></label> <select id="section_id" name="section_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($sectionList as $section_key => $section_value) { ?> <option value="<?php echo $section_value['section_id']; ?>" <?php echo set_select('section_id', $section_value['id'], (set_value('section_id', $section_value['section_id']) == $question_result->section_id) ? true : false); ?>><?php echo $section_value['section']; ?></option> <?php } ?> </select> <span class="text-danger"><?php echo form_error('section_id'); ?></span> </div> </div> <div class="form-group"> <label><?php echo $this->lang->line('question') ?></label><small class="req"> *</small> <button class="btn btn-primary pull-right btn-xs" type="button" id="question" data-toggle="modal" data-location="question" data-target="#myimgModal"><i class="fa fa-plus"></i> <?php echo $this->lang->line('add_image'); ?></button> <textarea class="form-control ckeditor" id="question_textbox" name="question"><?php echo $question_result->question;?></textarea> <span class="text text-danger question_error"></span> </div> <div class="option_list" <?php echo ($question_result->question_type == "multichoice" || $question_result->question_type == "singlechoice"|| $question_result->question_type == "" )? "style='display: block;'":"" ?> > <?php foreach ($questionOpt as $question_opt_key => $question_opt_value) { ?> <div class="form-group"> <label for="<?php echo $question_opt_key; ?>"><?php echo $this->lang->line('option_' . $question_opt_value); ?><?php if ($question_opt_value != 'E') {?><small class="req"> *</small><?php }?></label> <button class="btn btn-primary pull-right btn-xs" type="button" data-location="<?php echo $question_opt_key; ?>" id="<?php echo $question_opt_key; ?>" data-toggle="modal" data-target="#myimgModal"><i class="fa fa-plus"></i> <?php echo $this->lang->line('add_image'); ?></button> <textarea class="form-control ckeditor" name="<?php echo $question_opt_key; ?>" id="<?php echo $question_opt_key . "_textbox"; ?>"><?php echo $question_result->{$question_opt_key} ?></textarea> <span class="text text-danger <?php echo $question_opt_key; ?>_error"></span> </div> <?php } ?> </div> <div class="form-group ans" <?php echo ($question_result->question_type == "singlechoice" || $question_result->question_type == "") ? "style='display: block;'":"" ?> > <label><?php echo $this->lang->line('answer') ?></label><small class="req"> *</small> <select class="form-control" name="correct"> <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($questionOpt as $question_opt_key => $question_opt_value) { ?> <option value="<?php echo $question_opt_key; ?>" <?php echo set_select('correct', $question_opt_key, (set_value('correct', $question_result->correct) == $question_opt_key ) ? TRUE : FALSE ); ?> ><?php echo $question_opt_value; ?></option> <?php } ?> </select> <span class="text text-danger correct_error"></span> </div> <div class="form-group ans_true_false" <?php echo ($question_result->question_type == "true_false") ? "style='display: block;'":"" ?> > <label><?php echo $this->lang->line('answer') ?></label><small class="req"> *</small> <select class="form-control" name="correct_true_false"> <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($question_true_false as $question_true_false_key => $question_true_false_value) { ?> <option value="<?php echo $question_true_false_key; ?>" <?php echo set_select('correct', $question_true_false_key, (set_value('correct', $question_result->correct) == $question_true_false_key ) ? TRUE : FALSE ); ?> ><?php echo $question_true_false_value; ?></option> <?php } ?> </select> <span class="text text-danger correct_error"></span> </div> <div class="form-group ans_checkbox" <?php echo ($question_result->question_type == "multichoice") ? "style='display: block;'":"" ?>> <label for="subject_id"><?php echo $this->lang->line('answer') ?></label><small class="req"> *</small> <div> <?php foreach ($questionOpt as $question_opt_key => $question_opt_value) { ?> <label class="checkbox-inline"> <input type="checkbox" name="ans[]" value="<?php echo $question_opt_key; ?>" <?php echo isJSON($question_result->correct)?(findarray(json_decode($question_result->correct),$question_opt_key) ? 'checked' : ''):""; ?>><?php echo $question_opt_value; ?> </label> <?php } ?> </div> <span class="text text-danger ans_error"></span> </div> <?php function findarray($array, $find){ if (!empty($array)) { foreach ($array as $array_key => $array_value) { if ($array_value == $find) { return TRUE; } } return FALSE; } } ?>
💾 Save Changes
❌ Cancel