summaryrefslogtreecommitdiff
path: root/includes/view/Questions_view.php
blob: 02cec393bda3bd6dcf599d3a392e28d26ec97fd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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) 
  ));
}

?>