engelsystem/includes/view/Questions_view.php

37 lines
1.3 KiB
PHP
Raw Normal View History

2013-11-25 22:04:32 +01:00
<?php
function Questions_view($open_questions, $answered_questions, $ask_action) {
foreach ($open_questions as &$question) {
2013-11-28 22:00:49 +01:00
$question['actions'] = '<a href="' . page_link_to("user_questions") . '&action=delete&id=' . $question['QID'] . '">' . _("delete") . '</a>';
2013-11-25 22:04:32 +01:00
$question['Question'] = str_replace("\n", '<br />', $question['Question']);
}
foreach ($answered_questions as &$question) {
$question['Question'] = str_replace("\n", '<br />', $question['Question']);
$question['Answer'] = str_replace("\n", '<br />', $question['Answer']);
2013-11-28 22:00:49 +01:00
$question['actions'] = '<a href="' . page_link_to("user_questions") . '&action=delete&id=' . $question['QID'] . '">' . _("delete") . '</a>';
2013-11-25 22:04:32 +01:00
}
return page_with_title(questions_title(), [
2013-11-25 22:04:32 +01:00
msg(),
heading(_("Open questions"), 2),
table([
2013-11-25 22:04:32 +01:00
'Question' => _("Question"),
'actions' => ""
], $open_questions),
heading(_("Answered questions"), 2),
table([
2013-11-25 22:04:32 +01:00
'Question' => _("Question"),
'answer_user' => _("Answered by"),
'Answer' => _("Answer"),
'actions' => ""
], $answered_questions),
heading(_("Ask an archangel"), 2),
form([
2013-11-25 22:04:32 +01:00
form_textarea('question', _("Your Question:"), ""),
form_submit('submit', _("Save"))
], $ask_action)
]);
2013-11-25 22:04:32 +01:00
}
?>