engelsystem/includes/pages/admin_questions.php

104 lines
4.0 KiB
PHP
Raw Normal View History

2011-06-03 00:22:11 +02:00
<?php
2013-11-25 21:04:58 +01:00
function admin_questions_title() {
return _("Answer questions");
}
2011-06-03 00:22:11 +02:00
function admin_new_questions() {
2012-12-26 14:02:27 +01:00
global $user, $privileges;
2014-08-22 22:34:13 +02:00
2012-12-26 14:02:27 +01:00
if (in_array("admin_questions", $privileges)) {
2014-08-22 22:34:13 +02:00
$new_messages = sql_num_query("SELECT * FROM `Questions` WHERE `AID` IS NULL");
2012-12-26 14:02:27 +01:00
if ($new_messages > 0)
2014-08-23 01:55:18 +02:00
info('<a href="' . page_link_to("admin_questions") . '">Es gibt unbeantwortete Fragen!</a>');
2012-12-26 14:02:27 +01:00
}
2014-08-22 22:34:13 +02:00
2012-12-26 14:02:27 +01:00
return "";
2011-06-03 00:22:11 +02:00
}
function admin_questions() {
2012-12-26 14:02:27 +01:00
global $user;
2014-08-22 22:34:13 +02:00
if (! isset($_REQUEST['action'])) {
2012-12-26 14:02:27 +01:00
$open_questions = "";
2014-08-22 22:34:13 +02:00
$questions = sql_select("SELECT * FROM `Questions` WHERE `AID` IS NULL");
foreach ($questions as $question) {
$user_source = User($question['UID']);
2014-08-22 22:34:13 +02:00
if ($user_source === false)
engelsystem_error("Unable to load user.");
2014-08-22 22:34:13 +02:00
$open_questions .= template_render('../templates/admin_question_unanswered.html', array(
'question_nick' => User_Nick_render($user_source),
'question_id' => $question['QID'],
'link' => page_link_to("admin_questions"),
'question' => str_replace("\n", '<br />', $question['Question'])
));
}
2014-08-22 22:34:13 +02:00
2012-12-26 14:02:27 +01:00
$answered_questions = "";
2014-08-22 22:34:13 +02:00
$questions = sql_select("SELECT * FROM `Questions` WHERE NOT `AID` IS NULL");
foreach ($questions as $question) {
$user_source = User($question['UID']);
2014-08-22 22:34:13 +02:00
if ($user_source === false)
engelsystem_error("Unable to load user.");
2014-08-22 22:34:13 +02:00
$answer_user_source = User($question['AID']);
2014-08-22 22:34:13 +02:00
if ($answer_user_source === false)
engelsystem_error("Unable to load user.");
2014-08-22 22:34:13 +02:00
$answered_questions .= template_render('../templates/admin_question_answered.html', array(
'question_id' => $question['QID'],
'question_nick' => User_Nick_render($user_source),
'question' => str_replace("\n", "<br />", $question['Question']),
'answer_nick' => User_Nick_render($answer_user_source),
'answer' => str_replace("\n", "<br />", $question['Answer']),
'link' => page_link_to("admin_questions")
));
}
2014-08-22 22:34:13 +02:00
return template_render('../templates/admin_questions.html', array(
'link' => page_link_to("admin_questions"),
'open_questions' => $open_questions,
'answered_questions' => $answered_questions
2012-12-26 14:02:27 +01:00
));
} else {
switch ($_REQUEST['action']) {
2014-08-22 22:34:13 +02:00
case 'answer':
if (isset($_REQUEST['id']) && preg_match("/^[0-9]{1,11}$/", $_REQUEST['id']))
2012-12-26 14:02:27 +01:00
$id = $_REQUEST['id'];
else
return error("Incomplete call, missing Question ID.", true);
2014-08-22 22:34:13 +02:00
2012-12-26 14:02:27 +01:00
$question = sql_select("SELECT * FROM `Questions` WHERE `QID`=" . sql_escape($id) . " LIMIT 1");
2014-08-22 22:34:13 +02:00
if (count($question) > 0 && $question[0]['AID'] == null) {
2012-12-26 14:02:27 +01:00
$answer = trim(preg_replace("/([^\p{L}\p{P}\p{Z}\p{N}\n]{1,})/ui", '', strip_tags($_REQUEST['answer'])));
2014-08-22 22:34:13 +02:00
2012-12-26 14:02:27 +01:00
if ($answer != "") {
sql_query("UPDATE `Questions` SET `AID`=" . sql_escape($user['UID']) . ", `Answer`='" . sql_escape($answer) . "' WHERE `QID`=" . sql_escape($id) . " LIMIT 1");
engelsystem_log("Question " . $question[0]['Question'] . " answered: " . $answer);
2012-12-30 18:27:45 +01:00
redirect(page_link_to("admin_questions"));
2012-12-26 14:02:27 +01:00
} else
return error("Gib eine Antwort ein!", true);
} else
return error("No question found.", true);
break;
2014-08-22 22:34:13 +02:00
case 'delete':
if (isset($_REQUEST['id']) && preg_match("/^[0-9]{1,11}$/", $_REQUEST['id']))
2012-12-26 14:02:27 +01:00
$id = $_REQUEST['id'];
else
return error("Incomplete call, missing Question ID.", true);
2014-08-22 22:34:13 +02:00
2012-12-26 14:02:27 +01:00
$question = sql_select("SELECT * FROM `Questions` WHERE `QID`=" . sql_escape($id) . " LIMIT 1");
if (count($question) > 0) {
sql_query("DELETE FROM `Questions` WHERE `QID`=" . sql_escape($id) . " LIMIT 1");
engelsystem_log("Question deleted: " . $question[0]['Question']);
2012-12-30 18:27:45 +01:00
redirect(page_link_to("admin_questions"));
2012-12-26 14:02:27 +01:00
} else
return error("No question found.", true);
break;
}
}
2011-06-03 00:22:11 +02:00
}
?>