engelsystem/includes/view/Questions_view.php

47 lines
1.6 KiB
PHP
Raw Normal View History

2013-11-25 22:04:32 +01:00
<?php
2017-01-03 03:22:48 +01:00
/**
* @param array[] $open_questions
* @param array[] $answered_questions
* @param string $ask_action
* @return string
*/
2017-01-02 03:57:23 +01:00
function Questions_view($open_questions, $answered_questions, $ask_action)
{
foreach ($open_questions as &$question) {
$question['actions'] = form([
form_submit('submit', __('delete'), 'btn-default btn-xs')
], page_link_to('user_questions', ['action' => 'delete', 'id' => $question['QID']]));
$question['Question'] = nl2br(htmlspecialchars($question['Question']));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
foreach ($answered_questions as &$question) {
$question['Question'] = nl2br(htmlspecialchars($question['Question']));
$question['Answer'] = nl2br(htmlspecialchars($question['Answer']));
$question['actions'] = form([
form_submit('submit', __('delete'), 'btn-default btn-xs')
], page_link_to('user_questions', ['action' => 'delete', 'id' => $question['QID']]));
2017-01-02 03:57:23 +01:00
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
return page_with_title(questions_title(), [
2017-01-02 15:43:36 +01:00
msg(),
heading(__('Open questions'), 2),
2017-01-02 15:43:36 +01:00
table([
'Question' => __('Question'),
2017-01-03 14:12:17 +01:00
'actions' => ''
2017-01-02 15:43:36 +01:00
], $open_questions),
heading(__('Answered questions'), 2),
2017-01-02 15:43:36 +01:00
table([
'Question' => __('Question'),
'answer_user' => __('Answered by'),
'Answer' => __('Answer'),
2017-01-03 14:12:17 +01:00
'actions' => ''
2017-01-02 15:43:36 +01:00
], $answered_questions),
heading(__('Ask the Heaven'), 2),
2017-01-02 15:43:36 +01:00
form([
form_textarea('question', __('Your Question:'), ''),
form_submit('submit', __('Save'))
2017-01-02 15:43:36 +01:00
], $ask_action)
]);
2013-11-25 22:04:32 +01:00
}