You are here

class advanced_forum_plugin_style_forum_topic_list in Advanced Forum 6.2

Same name and namespace in other branches
  1. 7.2 includes/views/advanced_forum_plugin_style_forum_topic_list.inc \advanced_forum_plugin_style_forum_topic_list

Style plugin to render each item as a row in a table.

Hierarchy

Expanded class hierarchy of advanced_forum_plugin_style_forum_topic_list

1 string reference to 'advanced_forum_plugin_style_forum_topic_list'
advanced_forum_views_plugins in includes/views/advanced_forum.views.inc
Implementation of hook_views_plugins().

File

includes/views/advanced_forum_plugin_style_forum_topic_list.inc, line 12
Contains the topic list style plugin.

View source
class advanced_forum_plugin_style_forum_topic_list extends views_plugin_style_table {
  function option_definition() {
    $options = parent::option_definition();
    $options['tid'] = array(
      'default' => '',
    );
    return $options;
  }
  function options_form(&$form, &$form_state) {
    parent::options_form($form, $form_state);
    $options = array(
      '' => t('None'),
    );
    $arguments = $this->display->handler
      ->get_handlers('argument');
    foreach ($arguments as $id => $argument) {
      $options['argument.' . $id] = $argument
        ->ui_name();
    }
    $filters = $this->display->handler
      ->get_handlers('filter');
    foreach ($filters as $id => $filter) {
      $options['filter.' . $id] = $filter
        ->ui_name();
    }
    $form['tid'] = array(
      '#type' => 'select',
      '#title' => t('Source of forum ID'),
      '#options' => $options,
      '#default_value' => $this->options['tid'],
    );
  }

  /**
   * Add a couple of fields to the query that we can later use. We are going to
   * specificly alias them because this style is not meant to be used on relationships.
   */
  function query() {
    $this->view->query
      ->add_field('node', 'sticky', 'topic_is_sticky');
    $this->view->query
      ->add_field('forum', 'tid', 'topic_actual_forum');
  }

  /**
   * Figure out what the forum ID is. It could have come from an argument
   * or a filter or nowhere. This source would be set by the user in the
   * options.
   */
  function get_forum_ids() {
    $where = $this->options['tid'];
    if (empty($where)) {
      return;
    }
    $term = '';
    list($type, $id) = explode('.', $where, 2);
    $handler = $this->display->handler
      ->get_handler($type, $id);
    if ($type == 'argument') {
      return array(
        $handler->argument,
      );
    }
    else {
      $terms = $handler->value;
      if (isset($handler->options['depth'])) {
        foreach ($handler->value as $tid) {
          $term = taxonomy_get_term($tid);
          $tree = taxonomy_get_tree($term->vid, $tid, -1, $handler->options['depth']);
          $terms = array_merge($terms, array_map('_taxonomy_get_tid_from_term', $tree));
        }
      }
      return $terms;
    }
  }

}

Members

Namesort descending Modifiers Type Description Overrides
advanced_forum_plugin_style_forum_topic_list::get_forum_ids function Figure out what the forum ID is. It could have come from an argument or a filter or nowhere. This source would be set by the user in the options.
advanced_forum_plugin_style_forum_topic_list::options_form function
advanced_forum_plugin_style_forum_topic_list::option_definition function
advanced_forum_plugin_style_forum_topic_list::query function Add a couple of fields to the query that we can later use. We are going to specificly alias them because this style is not meant to be used on relationships.