You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
engelsystem/includes/pages/admin_questions.php

158 lines
5.5 KiB
PHTML

14 years ago
<?php
use Engelsystem\Models\Question;
/**
* @return string
*/
8 years ago
function admin_questions_title()
{
return __('Answer questions');
}
/**
* Renders a hint for new questions to answer.
*
* @return string|null
*/
8 years ago
function admin_new_questions()
{
if (current_page() != 'admin_questions') {
if (auth()->can('admin_questions')) {
$unanswered_questions = Question::unanswered()->count();
if ($unanswered_questions > 0) {
return '<a href="' . page_link_to('admin_questions') . '">'
. __('There are unanswered questions!')
. '</a>';
8 years ago
}
}
}
8 years ago
8 years ago
return null;
14 years ago
}
/**
* @return string
*/
8 years ago
function admin_questions()
{
$user = auth()->user();
$request = request();
8 years ago
if (!$request->has('action')) {
8 years ago
$unanswered_questions_table = [];
$unanswered_questions = Question::unanswered()->get();
foreach ($unanswered_questions as $question) {
/* @var Question $question */
$user_source = $question->user;
8 years ago
8 years ago
$unanswered_questions_table[] = [
'from' => User_Nick_render($user_source) . User_Pronoun_render($user_source),
'question' => nl2br(htmlspecialchars($question->text)),
8 years ago
'answer' => form([
form_textarea('answer', '', ''),
form_submit('submit', __('Send'))
], page_link_to('admin_questions', ['action' => 'answer', 'id' => $question->id])),
'actions' => form([
form_submit('submit', __('delete'), 'btn-xs'),
], page_link_to('admin_questions', ['action' => 'delete', 'id' => $question->id])),
8 years ago
];
8 years ago
}
8 years ago
8 years ago
$answered_questions_table = [];
$answered_questions = Question::answered()->get();
foreach ($answered_questions as $question) {
/* @var Question $question */
$user_source = $question->user;
$answer_user_source = $question->answerer;
8 years ago
$answered_questions_table[] = [
8 years ago
'from' => User_Nick_render($user_source),
'question' => nl2br(htmlspecialchars($question->text)),
8 years ago
'answered_by' => User_Nick_render($answer_user_source),
'answer' => nl2br(htmlspecialchars($question->answer)),
'actions' => form([
form_submit('submit', __('delete'), 'btn-xs')
], page_link_to('admin_questions', ['action' => 'delete', 'id' => $question->id]))
8 years ago
];
8 years ago
}
8 years ago
8 years ago
return page_with_title(admin_questions_title(), [
'<h2>' . __('Unanswered questions') . '</h2>',
8 years ago
table([
'from' => __('From'),
'question' => __('Question'),
'answer' => __('Answer'),
8 years ago
'actions' => ''
], $unanswered_questions_table),
'<h2>' . __('Answered questions') . '</h2>',
8 years ago
table([
'from' => __('From'),
'question' => __('Question'),
'answered_by' => __('Answered by'),
'answer' => __('Answer'),
8 years ago
'actions' => ''
], $answered_questions_table)
]);
8 years ago
} else {
switch ($request->input('action')) {
8 years ago
case 'answer':
if (
$request->has('id')
&& preg_match('/^\d{1,11}$/', $request->input('id'))
&& $request->hasPostData('submit')
) {
$question_id = $request->input('id');
8 years ago
} else {
return error('Incomplete call, missing Question ID.', true);
8 years ago
}
$question = Question::find($question_id);
if (!empty($question) && empty($question->answerer_id)) {
$answer = trim($request->input('answer'));
8 years ago
if (!empty($answer)) {
$question->answerer_id = $user->id;
$question->answer = $answer;
$question->save();
engelsystem_log(
'Question '
. $question['Question']
. ' answered: '
. $answer
);
throw_redirect(page_link_to('admin_questions'));
8 years ago
} else {
return error('Enter an answer!', true);
8 years ago
}
} else {
return error('No question found.', true);
8 years ago
}
break;
case 'delete':
if (
$request->has('id')
&& preg_match('/^\d{1,11}$/', $request->input('id'))
&& $request->hasPostData('submit')
) {
$question_id = $request->input('id');
8 years ago
} else {
return error('Incomplete call, missing Question ID.', true);
8 years ago
}
$question = Question::find($question_id);
if (!empty($question)) {
$question->delete();
engelsystem_log('Question deleted: ' . $question['Question']);
throw_redirect(page_link_to('admin_questions'));
8 years ago
} else {
return error('No question found.', true);
8 years ago
}
break;
}
8 years ago
}
return '';
14 years ago
}