You are here

function _faq_ask_help_default in FAQ_Ask 7

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

Special function to get the help text default.

2 calls to _faq_ask_help_default()
faq_ask_help in ./faq_ask.module
Display help and module information
faq_ask_settings_form in ./faq_ask.module
Implements hook_form().

File

./faq_ask.module, line 1940
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_help_default() {
  return t("Add a question for our expert to answer. After being answered, your question and the answer will be displayed in the FAQ pages. If the question will not fit in the box below, please try to rephrase it.");
}