engelsystem/includes/view/Questions_view.php

51 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) {
2017-08-28 16:21:10 +02:00
$question['actions'] = '<a href="'
. page_link_to('user_questions', ['action' => 'delete', 'id' => $question['QID']])
. '">'
. _('delete')
. '</a>';
2017-01-02 03:57:23 +01:00
$question['Question'] = str_replace("\n", '<br />', $question['Question']);
}
2017-01-02 15:43:36 +01:00
2017-01-02 03:57:23 +01:00
foreach ($answered_questions as &$question) {
$question['Question'] = str_replace("\n", '<br />', $question['Question']);
$question['Answer'] = str_replace("\n", '<br />', $question['Answer']);
2017-08-28 16:21:10 +02:00
$question['actions'] = '<a href="'
. page_link_to('user_questions', ['action' => 'delete', 'id' => $question['QID']])
. '">'
. _('delete')
. '</a>';
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(),
2017-01-03 14:12:17 +01:00
heading(_('Open questions'), 2),
2017-01-02 15:43:36 +01:00
table([
2017-01-03 14:12:17 +01:00
'Question' => _('Question'),
'actions' => ''
2017-01-02 15:43:36 +01:00
], $open_questions),
2017-01-03 14:12:17 +01:00
heading(_('Answered questions'), 2),
2017-01-02 15:43:36 +01:00
table([
2017-01-03 14:12:17 +01:00
'Question' => _('Question'),
'answer_user' => _('Answered by'),
'Answer' => _('Answer'),
'actions' => ''
2017-01-02 15:43:36 +01:00
], $answered_questions),
2017-01-03 14:12:17 +01:00
heading(_('Ask the Heaven'), 2),
2017-01-02 15:43:36 +01:00
form([
2017-01-03 14:12:17 +01:00
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
}