You are here

function faq_ask_list_more in FAQ_Ask 6.2

Same name and namespace in other branches
  1. 6 faq_ask.module \faq_ask_list_more()
  2. 7 faq_ask.module \faq_ask_list_more()

This function lists all the unanswered questions the user is allowed to see. It is used by the "more..." link from the block, but can also be called independently.

1 string reference to 'faq_ask_list_more'
faq_ask_menu in ./faq_ask.module
Implementation of hook_menu().

File

./faq_ask.module, line 1755
This module is an add-on to the FAQ module that allows users with the 'ask question' permission to create a question which will be queued for an 'expert' to answer.

Code

function faq_ask_list_more() {
  drupal_set_title(t('All Unanswered Questions'));
  $output = '<br/>';
  return _faq_ask_list_unanswered(9999999);
}