function faq_theme in Frequently Asked Questions 6
Same name and namespace in other branches
- 8 faq.module \faq_theme()
- 7.2 faq.module \faq_theme()
- 7 faq.module \faq_theme()
Implements hook_theme().
File
- ./
faq.module, line 661 - The FAQ module allows users to create a FAQ page, with questions and answers displayed in different styles, according to the settings.
Code
function faq_theme() {
$path = drupal_get_path('module', 'faq') . '/includes';
return array(
'faq_draggable_question_order_table' => array(
'arguments' => array(
'form' => NULL,
),
),
'faq_questions_top' => array(
'path' => $path,
'file' => 'faq.questions_top.inc',
'template' => 'faq-questions-top',
'arguments' => array(
'data' => NULL,
),
),
'faq_category_questions_top' => array(
'path' => $path,
'file' => 'faq.questions_top.inc',
'template' => 'faq-category-questions-top',
'arguments' => array(
'data' => NULL,
'display_header' => 0,
'category_display' => NULL,
'term' => NULL,
'class' => NULL,
'parent_term' => NULL,
),
),
'faq_category_questions_top_answers' => array(
'path' => $path,
'file' => 'faq.questions_top.inc',
'template' => 'faq-category-questions-top-answers',
'arguments' => array(
'data' => NULL,
'display_header' => 0,
'category_display' => NULL,
'term' => NULL,
'class' => NULL,
'parent_term' => NULL,
),
),
'faq_hide_answer' => array(
'path' => $path,
'file' => 'faq.hide_answer.inc',
'template' => 'faq-hide-answer',
'arguments' => array(
'data' => NULL,
),
),
'faq_category_hide_answer' => array(
'path' => $path,
'file' => 'faq.hide_answer.inc',
'template' => 'faq-category-hide-answer',
'arguments' => array(
'data' => NULL,
'display_header' => 0,
'category_display' => NULL,
'term' => NULL,
'class' => NULL,
'parent_term' => NULL,
),
),
'faq_questions_inline' => array(
'path' => $path,
'file' => 'faq.questions_inline.inc',
'template' => 'faq-questions-inline',
'arguments' => array(
'data' => NULL,
),
),
'faq_category_questions_inline' => array(
'path' => $path,
'file' => 'faq.questions_inline.inc',
'template' => 'faq-category-questions-inline',
'arguments' => array(
'data' => NULL,
'display_header' => 0,
'category_display' => NULL,
'term' => NULL,
'class' => NULL,
'parent_term' => NULL,
),
),
'faq_new_page' => array(
'path' => $path,
'file' => 'faq.new_page.inc',
'template' => 'faq-new-page',
'arguments' => array(
'data' => NULL,
),
),
'faq_category_new_page' => array(
'path' => $path,
'file' => 'faq.new_page.inc',
'template' => 'faq-category-new-page',
'arguments' => array(
'data' => NULL,
'display_header' => 0,
'category_display' => NULL,
'term' => NULL,
'class' => NULL,
'parent_term' => NULL,
),
),
'faq_page' => array(
'arguments' => array(
'content' => '',
'answers' => '',
'description' => NULL,
),
),
);
}