117 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
<?php
 | 
						|
 | 
						|
/**
 | 
						|
 * @file
 | 
						|
 * Definition of Views\comment\Plugin\views\row\View.
 | 
						|
 */
 | 
						|
 | 
						|
namespace Views\comment\Plugin\views\row;
 | 
						|
 | 
						|
use Drupal\views\Plugin\views\row\RowPluginBase;
 | 
						|
use Drupal\Core\Annotation\Plugin;
 | 
						|
use Drupal\Core\Annotation\Translation;
 | 
						|
 | 
						|
/**
 | 
						|
 * Plugin which performs a comment_view on the resulting object.
 | 
						|
 *
 | 
						|
 * @Plugin(
 | 
						|
 *   id = "comment_view",
 | 
						|
 *   module = "comment",
 | 
						|
 *   title = @Translation("Comment"),
 | 
						|
 *   help = @Translation("Display the comment with standard comment view."),
 | 
						|
 *   theme = "views_view_row_comment",
 | 
						|
 *   base = {"comment"},
 | 
						|
 *   type = "normal",
 | 
						|
 *   help_topic = "style-comment"
 | 
						|
 * )
 | 
						|
 */
 | 
						|
class View extends RowPluginBase {
 | 
						|
 | 
						|
  var $base_field = 'cid';
 | 
						|
  var $base_table = 'comment';
 | 
						|
 | 
						|
  /**
 | 
						|
   * Stores all comments which are preloaded.
 | 
						|
   */
 | 
						|
  var $comments = array();
 | 
						|
 | 
						|
  /**
 | 
						|
   * Stores all nodes of all comments which are preloaded.
 | 
						|
   */
 | 
						|
  var $nodes = array();
 | 
						|
 | 
						|
  function summary_title() {
 | 
						|
    return t('Settings');
 | 
						|
  }
 | 
						|
 | 
						|
  function option_definition() {
 | 
						|
    $options = parent::option_definition();
 | 
						|
    $options['links'] = array('default' => TRUE, 'bool' => TRUE);
 | 
						|
    $options['view_mode'] = array('default' => 'full');
 | 
						|
    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'],
 | 
						|
    );
 | 
						|
  }
 | 
						|
 | 
						|
 | 
						|
  /**
 | 
						|
   * Return the main options, which are shown in the summary title.
 | 
						|
   */
 | 
						|
  function options_form_summary_options() {
 | 
						|
    $entity_info = entity_get_info('comment');
 | 
						|
    $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(
 | 
						|
        'full' => t('Full content')
 | 
						|
      );
 | 
						|
    }
 | 
						|
 | 
						|
    return $options;
 | 
						|
  }
 | 
						|
 | 
						|
  function pre_render($result) {
 | 
						|
    $cids = array();
 | 
						|
 | 
						|
    foreach ($result as $row) {
 | 
						|
      $cids[] = $row->cid;
 | 
						|
    }
 | 
						|
 | 
						|
    // Load all comments.
 | 
						|
    $cresult = comment_load_multiple($cids);
 | 
						|
    $nids = array();
 | 
						|
    foreach ($cresult as $comment) {
 | 
						|
      $comment->depth = count(explode('.', $comment->thread)) - 1;
 | 
						|
      $this->comments[$comment->cid] = $comment;
 | 
						|
      $nids[] = $comment->nid;
 | 
						|
    }
 | 
						|
 | 
						|
    // Load all nodes of the comments.
 | 
						|
    $nodes = node_load_multiple(array_unique($nids));
 | 
						|
    foreach ($nodes as $node) {
 | 
						|
      $this->nodes[$node->nid] = $node;
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
}
 |