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

43 lines
1.5 KiB
PHTML

<?php
/**
* @param array[] $open_questions
* @param array[] $answered_questions
* @param string $ask_action
* @return string
*/
8 years ago
function Questions_view($open_questions, $answered_questions, $ask_action)
{
foreach ($open_questions as &$question) {
$question['actions'] = '<a href="' . page_link_to('user_questions') . '&action=delete&id=' . $question['QID'] . '">' . _('delete') . '</a>';
8 years ago
$question['Question'] = str_replace("\n", '<br />', $question['Question']);
}
8 years ago
8 years ago
foreach ($answered_questions as &$question) {
$question['Question'] = str_replace("\n", '<br />', $question['Question']);
$question['Answer'] = str_replace("\n", '<br />', $question['Answer']);
$question['actions'] = '<a href="' . page_link_to('user_questions') . '&action=delete&id=' . $question['QID'] . '">' . _('delete') . '</a>';
8 years ago
}
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)
]);
}