123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- /**
- * @file
- * Contains the node view row style plugin.
- */
- /**
- * Plugin which performs a node_view on the resulting object.
- *
- * Most of the code on this object is in the theme function.
- *
- * @ingroup views_row_plugins
- */
- class views_plugin_row_node_view extends views_plugin_row {
- // Basic properties that let the row style follow relationships.
- var $base_table = 'node';
- var $base_field = 'nid';
- // Stores the nodes loaded with pre_render.
- var $nodes = array();
- function init(&$view, &$display, $options = NULL) {
- parent::init($view, $display, $options);
- // Handle existing views with the deprecated 'teaser' option.
- if (isset($this->options['teaser'])) {
- $this->options['build_mode'] = $this->options['teaser'] ? 'teaser' : 'full';
- }
- // Handle existing views which has used build_mode instead of view_mode.
- if (isset($this->options['build_mode'])) {
- $this->options['view_mode'] = $this->options['build_mode'];
- }
- }
- function option_definition() {
- $options = parent::option_definition();
- $options['view_mode'] = array('default' => 'teaser');
- $options['links'] = array('default' => TRUE, 'bool' => TRUE);
- $options['comments'] = array('default' => FALSE, 'bool' => TRUE);
- return $options;
- }
- function options_form(&$form, &$form_state) {
- parent::options_form($form, $form_state);
- $options = $this->options_form_summary_options();
- $form['view_mode'] = array(
- '#type' => 'select',
- '#options' => $options,
- '#title' => t('View mode'),
- '#default_value' => $this->options['view_mode'],
- );
- $form['links'] = array(
- '#type' => 'checkbox',
- '#title' => t('Display links'),
- '#default_value' => $this->options['links'],
- );
- $form['comments'] = array(
- '#type' => 'checkbox',
- '#title' => t('Display comments'),
- '#default_value' => $this->options['comments'],
- );
- }
- /**
- * Return the main options, which are shown in the summary title.
- */
- function options_form_summary_options() {
- $entity_info = entity_get_info('node');
- $options = array();
- if (!empty($entity_info['view modes'])) {
- foreach ($entity_info['view modes'] as $mode => $settings) {
- $options[$mode] = $settings['label'];
- }
- }
- if (empty($options)) {
- $options = array(
- 'teaser' => t('Teaser'),
- 'full' => t('Full content')
- );
- }
- return $options;
- }
- function summary_title() {
- $options = $this->options_form_summary_options();
- return check_plain($options[$this->options['view_mode']]);
- }
- function pre_render($values) {
- $nids = array();
- foreach ($values as $row) {
- $nids[] = $row->{$this->field_alias};
- }
- $this->nodes = node_load_multiple($nids);
- }
- function render($row) {
- if (isset($this->nodes[$row->{$this->field_alias}])) {
- $node = $this->nodes[$row->{$this->field_alias}];
- $node->view = $this->view;
- $build = node_view($node, $this->options['view_mode']);
- return drupal_render($build);
- }
- }
- }
|