summaryrefslogtreecommitdiff
path: root/includes/view/Questions_view.php
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2013-11-25 22:04:32 +0100
committerPhilip Häusler <msquare@notrademark.de>2013-11-25 22:04:32 +0100
commit7d3239f3fe18e920d77e7179ca58af618149fc51 (patch)
tree6bef88ae1795d611968ea769e724a3306992d4b7 /includes/view/Questions_view.php
parenta866e532e4129ef20178b9bce5a0fb870a3614d6 (diff)
forgot to add the new views
Diffstat (limited to 'includes/view/Questions_view.php')
-rw-r--r--includes/view/Questions_view.php37
1 files changed, 37 insertions, 0 deletions
diff --git a/includes/view/Questions_view.php b/includes/view/Questions_view.php
new file mode 100644
index 00000000..02cec393
--- /dev/null
+++ b/includes/view/Questions_view.php
@@ -0,0 +1,37 @@
+<?php
+
+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'] . '">Löschen</a>';
+ $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']);
+ $question['actions'] = '<a href="' . page_link_to("user_questions") . '&action=delete&id=' . $question['QID'] . '">Löschen</a>';
+ }
+
+ return page(array(
+ msg(),
+ '<h2>' . _("Open questions") . '</h2>',
+ table(array(
+ 'Question' => _("Question"),
+ 'actions' => ""
+ ), $open_questions),
+ '<h2>' . _("Answered questions") . '</h2>',
+ table(array(
+ 'Question' => _("Question"),
+ 'answer_user' => _("Answered by"),
+ 'Answer' => _("Answer"),
+ 'actions' => ""
+ ), $answered_questions),
+ '<h2>' . _("Ask an archangel") . '</h2>',
+ form(array(
+ form_textarea('question', _("Your Question:"), ""),
+ form_submit('submit', _("Save"))
+ ), $ask_action)
+ ));
+}
+
+?> \ No newline at end of file