- <?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 {
-
- var $base_table = 'node';
- var $base_field = 'nid';
-
-
- var $nodes = array();
-
- function init(&$view, &$display, $options = NULL) {
- parent::init($view, $display, $options);
-
- if (isset($this->options['teaser'])) {
- $this->options['build_mode'] = $this->options['teaser'] ? 'teaser' : 'full';
- }
-
- 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['title'] = array('default' => TRUE, 'bool' => TRUE);
- $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('Display mode'),
- '#default_value' => $this->options['view_mode'],
- );
- $form['title'] = array(
- '#type' => 'checkbox',
- '#title' => t('Display title'),
- '#description' => t('The title will display as a link to each item.'),
- '#default_value' => $this->options['title'],
- );
- $form['links'] = array(
- '#type' => 'checkbox',
- '#title' => t('Display links'),
- '#description' => t("e.g. 'Read more', 'Add comment', etc."),
- '#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 backdrop_render($build);
- }
- }
- }