You are here

function _faq_ask_help_default in FAQ_Ask 6

Same name and namespace in other branches
  1. 6.2 faq_ask.module \_faq_ask_help_default()
  2. 7 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
Implementation of hook_form(). This form allows the users to select the expert roles and to which categories the users in those roles are assigned. Note, the expert/category table attempts to use the least horizontal space, so it can "flip"…

File

./faq_ask.module, line 1008
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.");
}