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/view/Questions_view.php

66 lines
2.1 KiB
PHTML

<?php
use Engelsystem\Models\Question;
/**
* @param Question[] $open_questions
* @param Question[] $answered_questions
* @param string $ask_action
* @return string
*/
function Questions_view(array $open_questions, array $answered_questions, $ask_action)
8 years ago
{
$open_questions = array_map(
static function (Question $question): array {
return [
'actions' => form(
[
form_submit('submit', __('delete'), 'btn-default btn-xs')
],
page_link_to('user_questions', ['action' => 'delete', 'id' => $question->id])
),
'Question' => nl2br(htmlspecialchars($question->text)),
];
},
$open_questions
);
8 years ago
$answered_questions = array_map(
static function (Question $question): array {
return [
'Question' => nl2br(htmlspecialchars($question->text)),
'Answer' => nl2br(htmlspecialchars($question->answer)),
'answer_user' => User_Nick_render($question->answerer),
'actions' => form(
[
form_submit('submit', __('delete'), 'btn-default btn-xs')
],
page_link_to('user_questions', ['action' => 'delete', 'id' => $question->id])
),
];
},
$answered_questions
);
8 years ago
8 years ago
return page_with_title(questions_title(), [
8 years ago
msg(),
heading(__('Open questions'), 2),
8 years ago
table([
'Question' => __('Question'),
'actions' => ''
8 years ago
], $open_questions),
heading(__('Answered questions'), 2),
8 years ago
table([
'Question' => __('Question'),
'answer_user' => __('Answered by'),
'Answer' => __('Answer'),
'actions' => ''
8 years ago
], $answered_questions),
heading(__('Ask the Heaven'), 2),
8 years ago
form([
form_textarea('question', __('Your Question:'), ''),
form_submit('submit', __('Save'))
8 years ago
], $ask_action)
], true);
}