You are here

function theme_faq_category_questions_inline in Frequently Asked Questions 5.2

Create the code of the FAQ page if set to show/hide the category-sorted questions inline.

Parameters

$nodes: Array of node objects to display.

$node_count: Number of nodes for this term, and possibly also the sub-terms.

$display_header: Boolean value controlling category header layout.

$category_display: The layout of categories which should be used.

$term: The category / term to display FAQs for.

$class: CSS class which the HTML div will be using. A special class name is required in order to hide and questions / answers.

$term_image: HTML output containing any taxonomy images attached to the taxonomy term.

Return value

A variable holding the HTML formatted page.

1 theme call to theme_faq_category_questions_inline()
_display_faq_by_category in ./faq.module
Display FAQ questions and answers filtered by category.

File

includes/faq.questions_inline.inc, line 67
FAQ page callbacks for the "questions inline" layouts.

Code

function theme_faq_category_questions_inline($nodes, $node_count, $display_header, $category_display, $term, $class, $term_image) {

  // Fetch configuration.
  $teaser = variable_get('faq_use_teaser', FALSE);
  $links = variable_get('faq_show_node_links', FALSE);
  $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);

  // Initialise some variables.
  $this_page = $_GET['q'];
  $get_child_terms = 0;
  if (arg(0) == 'faq' && is_numeric(arg(1))) {
    $get_child_terms = arg(1);
  }
  $default_sorting = variable_get('faq_default_sorting', 'DESC');
  $default_weight = 0;
  if ($default_sorting != 'DESC') {
    $default_weight = 1000000;
  }

  // Configure "back to top" link.
  $back_to_top = faq_init_back_to_top($this_page);

  // Configure header.
  $output .= theme('faq_category_header', $term, $term_image, $display_header, $faq_count, $show_term_page_children, $hide_child_terms, $category_display);

  // Configure Q/A div container with appropriate class name for hiding/unhiding
  // questions and answers.
  if ($get_child_terms == $term->tid) {
    $output .= '<div class="faq-qa">' . "\n";
  }
  else {
    $output .= '<div class="' . $class . '">' . "\n";
  }

  // Determine if faqs for sub-categories should be displayed or not.
  if ($get_child_terms && $category_display == 'categories_inline' || ($show_term_page_children && $this_page != 'faq' || $hide_child_terms) && $category_display == 'hide_qa') {
    $output .= faq_get_child_categories_faqs($term, 'faq_category_questions_inline', $default_weight, $default_sorting, $category_display, $class);
  }

  // Configure question and answer labels.
  $question_label = '';
  $answer_label = '';
  if (variable_get('faq_qa_mark', FALSE)) {
    $question_label .= variable_get('faq_question_label', "Q:") . ' ';
    $answer_label = '<strong>' . variable_get('faq_answer_label', "A:") . ' </strong>';
  }

  // Retrieve questions and answers for this term.
  $output .= "<div>\n";
  if (count($nodes)) {
    foreach ($nodes as $node) {
      $output .= theme('faq_format_question', $node, NULL, NULL, $question_label);
      $output .= faq_view_answer($node, $back_to_top, $teaser, $links, $answer_label);
    }
  }
  $output .= "</div>\n";
  $output .= "</div>\n</div>\n";

  // Replace the %%FAQ_COUNT%% placeholder with the updated count (including
  // sub-categories where appropriate).
  if ($faq_count) {
    $output = str_replace('%%FAQ_COUNT%%', $node_count, $output);
  }
  return $output;
}