Skip to content

Commit

Permalink
v3.1.3
Browse files Browse the repository at this point in the history
- Fix chức năng thêm câu hỏi qua file (cho phép hiển thị ảnh trong nội dung câu hỏi) ✓
  • Loading branch information
meesudzu committed Sep 29, 2018
1 parent 902b5ff commit 60fd0cf
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v3.1.3 (29/09/2018)

- Fix chức năng thêm câu hỏi qua file (cho phép hiển thị ảnh trong nội dung câu hỏi) ✓
v3.1.2 (28/09/2018)

- Fix chức năng thêm admin qua file ✓
Expand Down
4 changes: 2 additions & 2 deletions resource/config/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ class Config
{
const TITLE = 'Hệ Thống Trắc Nghiệm Online';
const COPYRIGHT = "Copyright © 2016 By Dzu";
const VERSION = "3.1.0";
const VERSION = "3.1.3";
const OWNER = "Nông Văn Du (Dzu)";
const CONTRIBUTOR = "";
const EMAIL = "[email protected]";
const RELEASE = "20/09/2018";
const RELEASE = "29/09/2018";
const TIMEZONE = "Asia/Bangkok";
}
8 changes: 4 additions & 4 deletions resource/controllers/controller_admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ public function check_add_question()
{
$result = array();
$shuffle = array();
$question_detail = isset($_POST['question_detail']) ? Htmlspecialchars(addslashes($_POST['question_detail'])) : '';
$question_detail = isset($_POST['question_detail']) ? $_POST['question_detail'] : '';
$grade_id = isset($_POST['grade_id']) ? Htmlspecialchars(addslashes($_POST['grade_id'])) : '';
$unit = isset($_POST['unit']) ? Htmlspecialchars(addslashes($_POST['unit'])) : '';
$shuffle[0] = isset($_POST['answer_a']) ? Htmlspecialchars(addslashes($_POST['answer_a'])) : '';
Expand Down Expand Up @@ -801,10 +801,10 @@ public function check_add_question_via_file()
$err_list += $stt.' ';
}
if ($err_list == '') {
$result['status_value'] = "Thêm thành công ".$count.' tài khoản!';
$result['status_value'] = "Thêm thành công ".$count.' câu hỏi!';
$result['status'] = 1;
} else {
$result['status_value'] = "Lỗi! Không thể thêm tài khoản có STT: ".$err_list.', vui lòng xem lại.';
$result['status_value'] = "Lỗi! Không thể thêm câu hỏi có STT: ".$err_list.', vui lòng xem lại.';
$result['status'] = 0;
}
echo json_encode($result);
Expand Down Expand Up @@ -876,7 +876,7 @@ public function check_edit_question()
{
$result = array();
$ID = isset($_POST['ID']) ? Htmlspecialchars($_POST['ID']) : '';
$question_detail = isset($_POST['question_detail']) ? Htmlspecialchars($_POST['question_detail']) : '';
$question_detail = isset($_POST['question_detail']) ? $_POST['question_detail'] : '';
$grade_id = isset($_POST['grade_id']) ? Htmlspecialchars($_POST['grade_id']) : '';
$unit = isset($_POST['unit']) ? Htmlspecialchars($_POST['unit']) : '';
$answer_a = isset($_POST['answer_a']) ? Htmlspecialchars($_POST['answer_a']) : '';
Expand Down
24 changes: 15 additions & 9 deletions resource/res/templates/admin_questions_panel.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@
</div>
<div id="add_normal" class="col s12">
<form action="" method="POST" role="form" id="add_question_form">
<span class="title">để thêm ảnh vào nội dung câu hỏi, sử dụng cú pháp:</span>
<xmp><img src="đường dẫn ảnh" alt="" style="max-width: 400px;max-height: 200px"></xmp>

<div class="col l12 s12" style="padding-top: 20px">
<div class="input-field">
<textarea id="question_detail" name="question_detail" class="materialize-textarea" required></textarea>
Expand Down Expand Up @@ -94,21 +97,24 @@
<span class="title">Tải File Mẫu: <a href="res/files/mau-them-danh-sach-cau-hoi.xlsx">TẠI ĐÂY</a></span><br />
<span class="title">Lưu Ý: <br />1, Không sửa file mẫu tránh gây lỗi khi nhập dữ liệu.</span>
<br />
<span class="title">Lưu Ý: <br />2, Chỉ hỗ trợ câu hỏi nội dung ký tự, không hỗ trợ câu hỏi bao gồm nội dung âm thanh, hình ảnh.</span>
<span class="title">2, Chỉ hỗ trợ câu hỏi nội dung ký tự, không hỗ trợ câu hỏi bao gồm nội dung âm thanh, hình ảnh.</span>
<br />
<span class="title">3, Để thêm ảnh vào nội dung câu hỏi, sử dụng cú pháp:</span>
<xmp><img src="đường dẫn ảnh" alt="" style="max-width: 400px;max-height: 200px"></xmp>
<br />
<span id="error" class="title" style="color: red"></span>
<form id="add_via_file" enctype="multipart/form-data">
<div class="file-field input-field col s6">
<div class="input-field">
<select name="grade_id" id="_grade_id">
</select>
<label>Khối</label>
</div>
<div class="input-field">
<select name="unit" id="_unit">
</select>
<label>Chương</label>
</div>
</select>
<label>Khối</label>
</div>
<div class="input-field">
<select name="unit" id="_unit">
</select>
<label>Chương</label>
</div>
<div class="input-field btn">
<span>File</span>
<input type="file" name="file_data" id="file_data" required="">
Expand Down

0 comments on commit 60fd0cf

Please sign in to comment.