You are here

function faq_ask_page in FAQ_Ask 7

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

Get the ask question form.

Obsolete? Doesn not seem to be called anywhere

Return value

void

1 string reference to 'faq_ask_page'
faq_ask_menu in ./faq_ask.module
Implements hook_menu().

File

./faq_ask.module, line 189
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_page($tid = NULL) {
  drupal_goto('node/add/faq', array(
    'query' => array(
      'ask' => 'TRUE',
    ),
  ));
}