| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 | 
							- <?php
 
- /**
 
-  * @file
 
-  * FAQ page callbacks for the "questions top" layouts.
 
-  */
 
- /**
 
-  * Create the structure of the page, when the questions are to be shown on top.
 
-  *
 
-  * @param array &$variables
 
-  *   Array reference of arguments given to the theme() function.
 
-  *
 
-  * @return array
 
-  *   A variable holding the HTML formatted page.
 
-  */
 
- function template_preprocess_faq_questions_top(&$variables) {
 
-   $data = $variables['data'];
 
-   // Fetch configuration.
 
-   $teaser = variable_get('faq_use_teaser', FALSE);
 
-   $links = variable_get('faq_show_node_links', FALSE);
 
-   $disable_node_links = variable_get('faq_disable_node_links', FALSE);
 
-   // Configure labels.
 
-   $variables['question_label'] = '';
 
-   $variables['answer_label'] = '';
 
-   if (variable_get('faq_qa_mark', FALSE)) {
 
-     $variables['question_label'] = check_plain(variable_get('faq_question_label', "Q:"));
 
-     $variables['answer_label'] = check_plain(variable_get('faq_answer_label', "A:"));
 
-   }
 
-   // Configure "back to top" link.
 
-   $this_page = $_GET['q'];
 
-   $back_to_top = faq_init_back_to_top($this_page);
 
-   // Loop through results.
 
-   $questions = array();
 
-   $answers = array();
 
-   $key = 0;
 
-   foreach ($data as $node) {
 
-     $anchor = 'n' . $node->nid;
 
-     $questions[$key] = l($node->title, $this_page, array('fragment' => $anchor));
 
-     faq_view_question($answers[$key], $node, NULL, $anchor);
 
-     faq_view_answer($answers[$key], $node, $back_to_top, $teaser, $links);
 
-     $key++;
 
-   }
 
-   $variables['limit'] = $key;
 
-   $list_style = variable_get('faq_question_listing', 'ul');
 
-   $variables['list_style'] = $list_style;
 
-   $variables['use_teaser'] = $teaser;
 
-   $variables['questions'] = $questions;
 
-   $variables['answers'] = $answers;
 
-   $variables['questions_list'] = theme('item_list',
 
-     array(
 
-       'items' => $questions,
 
-       'title' => NULL,
 
-       'type' => $list_style,
 
-       'attributes' => array(
 
-         "class" => "faq-ul-questions-top",
 
-       ),
 
-     )
 
-   );
 
- }
 
- /**
 
-  * Create categorized questions for FAQ page if set to show questions on top.
 
-  *
 
-  * @param array &$variables
 
-  *   Array reference of arguments given to the theme() function.
 
-  */
 
- function template_preprocess_faq_category_questions_top(&$variables) {
 
-   $data = $variables['data'];
 
-   $category_display = $variables['category_display'];
 
-   $term = $variables['term'];
 
-   $parent_term = $variables['parent_term'];
 
-   $class = $variables['class'];
 
-   // Fetch configuration.
 
-   $teaser = variable_get('faq_use_teaser', FALSE);
 
-   $links = variable_get('faq_show_node_links', FALSE);
 
-   $disable_node_links = variable_get('faq_disable_node_links', FALSE);
 
-   $display_faq_count = variable_get('faq_count', FALSE);
 
-   $hide_child_terms = variable_get('faq_hide_child_terms', FALSE);
 
-   $show_term_page_children = variable_get('faq_show_term_page_children', FALSE);
 
-   $group_questions_top = variable_get('faq_group_questions_top', FALSE);
 
-   $default_sorting = variable_get('faq_default_sorting', 'DESC');
 
-   // Configure labels.
 
-   $variables['question_label'] = '';
 
-   $variables['answer_label'] = '';
 
-   if (variable_get('faq_qa_mark', FALSE)) {
 
-     $variables['question_label'] = check_plain(variable_get('faq_question_label', "Q:"));
 
-     $variables['answer_label'] = check_plain(variable_get('faq_answer_label', "A:"));
 
-   }
 
-   // Initialise some variables.
 
-   $default_weight = 0;
 
-   if ($default_sorting != 'DESC') {
 
-     $default_weight = 1000000;
 
-   }
 
-   $this_page = $_GET['q'];
 
-   $get_child_terms = 0;
 
-   // Check if we're on a faq page.
 
-   if (arg(0) == 'faq-page') {
 
-     // Check if we're on a categorized faq page.
 
-     if (is_numeric(arg(1))) {
 
-       $get_child_terms = arg(1);
 
-     }
 
-   }
 
-   // Force some settings in case we're processing a special faq question list
 
-   // created by a custom call to faq_page().
 
-   elseif (!empty($parent_term)) {
 
-     $get_child_terms = $parent_term->tid;
 
-     $show_term_page_children = TRUE;
 
-   }
 
-   // Configure "back to top" link.
 
-   $back_to_top = faq_init_back_to_top($this_page);
 
-   // Get number of questions, and account for hidden sub-categories.
 
-   $count = 0;
 
-   if ($display_faq_count && $hide_child_terms) {
 
-     $count = faq_taxonomy_term_count_nodes($term->tid);
 
-   }
 
-   $variables['display_faq_count'] = $display_faq_count;
 
-   // Get taxonomy image.
 
-   $variables['term_image'] = '';
 
-   if (module_exists('taxonomy_image')) {
 
-     $variables['term_image'] = taxonomy_image_display($term->tid, array('class' => 'faq-tax-image'));
 
-   }
 
-   // Configure header.
 
-   $variables['category_depth'] = $term->depth;
 
-   $variables['category_name'] = check_plain(faq_tt("taxonomy:term:$term->tid:name", $term->name));
 
-   if ($category_display == 'hide_qa') {
 
-     $variables['header_title'] = l(faq_tt("taxonomy:term:$term->tid:name", $term->name), "faq-page/$term->tid");
 
-   }
 
-   else {
 
-     $variables['header_title'] = check_plain(faq_tt("taxonomy:term:$term->tid:name", $term->name));
 
-   }
 
-   // Configure category description.
 
-   $variables['description'] = check_markup(faq_tt("taxonomy:term:$term->tid:description", $term->description));
 
-   // Get list of sub-categories if necessary.
 
-   $child_categories = array();
 
-   if (($show_term_page_children || $hide_child_terms) && $category_display == 'new_page') {
 
-     $child_categories = faq_view_child_category_headers($term);
 
-   }
 
-   $variables['subcat_list'] = $child_categories;
 
-   $variables['subcat_list_style'] = variable_get('faq_category_listing', 'ul');
 
-   // Configure class (faq-qa or faq-qa-hide).
 
-   if ($get_child_terms == $term->tid) {
 
-     $variables['container_class'] = 'faq-qa';
 
-   }
 
-   else {
 
-     $variables['container_class'] = $class;
 
-   }
 
-   // Configure sub-category bodies (theme recursively).
 
-   $variables['subcat_body_list'] = array();
 
-   if (($get_child_terms && $category_display == 'categories_inline') || ((($show_term_page_children && $this_page != 'faq-page') || $hide_child_terms) && $category_display == 'hide_qa')) {
 
-     $variables['subcat_body_list'] = faq_get_child_categories_faqs($term, 'faq_category_questions_top', $default_weight, $default_sorting, $category_display, $variables['class'], $parent_term);
 
-   }
 
-   $variables['group_questions_top'] = $group_questions_top;
 
-   if (!count($data)) {
 
-     $variables['question_count'] = $count;
 
-     $variables['nodes'] = array();
 
-     $variables['answer_category_name'] = FALSE;
 
-     return;
 
-   }
 
-   $questions = array();
 
-   $nodes = array();
 
-   foreach ($data as $node) {
 
-     if (!$hide_child_terms) {
 
-       $count++;
 
-     }
 
-     $node_var = array();
 
-     $anchor = 't' . $term->tid . 'n' . $node->nid;
 
-     faq_view_question($node_var, $node, NULL, $anchor);
 
-     if ($group_questions_top || $category_display == 'hide_qa') {
 
-       faq_view_answer($node_var, $node, $back_to_top, $teaser, $links);
 
-     }
 
-     $nodes[] = $node_var;
 
-     $questions[] = l($node->title, $this_page, array('fragment' => $anchor));
 
-   }
 
-   $variables['question_count'] = $count;
 
-   $variables['use_teaser'] = $teaser;
 
-   $variables['question_list'] = $questions;
 
-   $variables['question_list_style'] = variable_get('faq_question_listing', 'ul');
 
-   if ($group_questions_top || $category_display == "hide_qa") {
 
-     $variables['nodes'] = $nodes;
 
-     $variables['answer_category_name'] = variable_get('faq_answer_category_name', FALSE);
 
-   }
 
-   else {
 
-     $variables['nodes'] = array();
 
-     $variables['answer_category_name'] = FALSE;
 
-   }
 
- }
 
- /**
 
-  * Create categorized answers for FAQ page if set to show the questions on top.
 
-  *
 
-  * @param array &$variables
 
-  *   Array reference of arguments given to the theme() function.
 
-  */
 
- function template_preprocess_faq_category_questions_top_answers(&$variables) {
 
-   $data = $variables['data'];
 
-   $category_display = $variables['category_display'];
 
-   $term = $variables['term'];
 
-   $parent_term = $variables['parent_term'];
 
-   $class = $variables['class'];
 
-   // Fetch configuration.
 
-   $teaser = variable_get('faq_use_teaser', FALSE);
 
-   $links = variable_get('faq_show_node_links', FALSE);
 
-   $disable_node_links = variable_get('faq_disable_node_links', FALSE);
 
-   $hide_child_terms = variable_get('faq_hide_child_terms', FALSE);
 
-   $show_term_page_children = variable_get('faq_show_term_page_children', FALSE);
 
-   $group_questions_top = variable_get('faq_group_questions_top', FALSE);
 
-   $default_sorting = variable_get('faq_default_sorting', 'DESC');
 
-   // Configure labels.
 
-   $variables['question_label'] = '';
 
-   $variables['answer_label'] = '';
 
-   if (variable_get('faq_qa_mark', FALSE)) {
 
-     $variables['question_label'] = check_plain(variable_get('faq_question_label', "Q:"));
 
-     $variables['answer_label'] = check_plain(variable_get('faq_answer_label', "A:"));
 
-   }
 
-   // Initialise some variables.
 
-   $default_weight = 0;
 
-   if ($default_sorting != 'DESC') {
 
-     $default_weight = 1000000;
 
-   }
 
-   $variables['group_questions_top'] = $group_questions_top;
 
-   if ($group_questions_top || $category_display == "hide_qa") {
 
-     $variables['display_answers'] = FALSE;
 
-     $variables['category_depth'] = 0;
 
-     return;
 
-   }
 
-   $variables['display_answers'] = TRUE;
 
-   $this_page = $_GET['q'];
 
-   $get_child_terms = 0;
 
-   // Check if we're on a faq page.
 
-   if (arg(0) == 'faq-page') {
 
-     // Check if we're on a categorized faq page.
 
-     if (is_numeric(arg(1))) {
 
-       $get_child_terms = arg(1);
 
-     }
 
-   }
 
-   // Force some settings in case we're processing a special faq question list
 
-   // created by a custom call to faq_page().
 
-   elseif (!empty($parent_term)) {
 
-     $get_child_terms = $parent_term->tid;
 
-     $show_term_page_children = TRUE;
 
-   }
 
-   // Configure "back to top" link.
 
-   $back_to_top = faq_init_back_to_top($this_page);
 
-   // Get taxonomy image.
 
-   $variables['term_image'] = '';
 
-   if (module_exists('taxonomy_image')) {
 
-     $variables['term_image'] = taxonomy_image_display($term->tid, array('class' => 'faq-tax-image'));
 
-   }
 
-   // Configure sub-category bodies (theme recursively).
 
-   $variables['subcat_body_list'] = array();
 
-   if (($get_child_terms && $category_display == 'categories_inline') || ((($show_term_page_children && $this_page != 'faq-page') || $hide_child_terms) && $category_display == 'hide_qa')) {
 
-     $variables['subcat_body_list'] = faq_get_child_categories_faqs($term, 'faq_category_questions_top_answers', $default_weight, $default_sorting, $category_display, $variables['class'], $parent_term);
 
-   }
 
-   $nodes = array();
 
-   foreach ($data as $node) {
 
-     $node_var = array();
 
-     $anchor = 't' . $term->tid . 'n' . $node->nid;
 
-     faq_view_question($node_var, $node, NULL, $anchor);
 
-     faq_view_answer($node_var, $node, $back_to_top, $teaser, $links);
 
-     $nodes[] = $node_var;
 
-   }
 
-   $variables['use_teaser'] = $teaser;
 
-   $variables['nodes'] = $nodes;
 
-   $variables['category_name'] = check_plain(faq_tt("taxonomy:term:$term->tid:name", $term->name));
 
-   $variables['category_depth'] = $term->depth;
 
-   $variables['display_header'] = FALSE;
 
-   $variables['answer_category_name'] = variable_get('faq_answer_category_name', FALSE);
 
-   if ($variables['answer_category_name'] && faq_taxonomy_term_count_nodes($term->tid)) {
 
-     $variables['display_header'] = TRUE;
 
-   }
 
- }
 
 
  |