From 7d3239f3fe18e920d77e7179ca58af618149fc51 Mon Sep 17 00:00:00 2001 From: Philip Häusler Date: Mon, 25 Nov 2013 22:04:32 +0100 Subject: forgot to add the new views --- includes/view/Questions_view.php | 37 +++++++++++++++++++++++++++++++++++++ includes/view/ShiftEntry_view.php | 28 ++++++++++++++++++++++++++++ 2 files changed, 65 insertions(+) create mode 100644 includes/view/Questions_view.php create mode 100644 includes/view/ShiftEntry_view.php (limited to 'includes/view') 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 @@ +Löschen'; + $question['Question'] = str_replace("\n", '
', $question['Question']); + } + + foreach ($answered_questions as &$question) { + $question['Question'] = str_replace("\n", '
', $question['Question']); + $question['Answer'] = str_replace("\n", '
', $question['Answer']); + $question['actions'] = 'Löschen'; + } + + return page(array( + msg(), + '

' . _("Open questions") . '

', + table(array( + 'Question' => _("Question"), + 'actions' => "" + ), $open_questions), + '

' . _("Answered questions") . '

', + table(array( + 'Question' => _("Question"), + 'answer_user' => _("Answered by"), + 'Answer' => _("Answer"), + 'actions' => "" + ), $answered_questions), + '

' . _("Ask an archangel") . '

', + form(array( + form_textarea('question', _("Your Question:"), ""), + form_submit('submit', _("Save")) + ), $ask_action) + )); +} + +?> \ No newline at end of file diff --git a/includes/view/ShiftEntry_view.php b/includes/view/ShiftEntry_view.php new file mode 100644 index 00000000..1080c4bc --- /dev/null +++ b/includes/view/ShiftEntry_view.php @@ -0,0 +1,28 @@ + \ No newline at end of file -- cgit v1.2.3-54-g00ecf