' . _('delete') . '';
$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'] = '' . _('delete') . '';
}
return page_with_title(questions_title(), [
msg(),
heading(_('Open questions'), 2),
table([
'Question' => _('Question'),
'actions' => ''
], $open_questions),
heading(_('Answered questions'), 2),
table([
'Question' => _('Question'),
'answer_user' => _('Answered by'),
'Answer' => _('Answer'),
'actions' => ''
], $answered_questions),
heading(_('Ask the Heaven'), 2),
form([
form_textarea('question', _('Your Question:'), ''),
form_submit('submit', _('Save'))
], $ask_action)
]);
}