You are here

protected function SupportTicket::rowStyleOptions in Support Ticketing System 8

Overrides Drupal\views\Plugin\views\wizard\WizardPluginBase::rowStyleOptions().

Overrides WizardPluginBase::rowStyleOptions

File

modules/support_ticket/src/Plugin/views/wizard/SupportTicket.php, line 64
Contains \Drupal\support_ticket\Plugin\views\wizard\SupportTicket.

Class

SupportTicket
Tests creating support ticket views with the wizard.

Namespace

Drupal\support_ticket\Plugin\views\wizard

Code

protected function rowStyleOptions() {
  $options = array();
  $options['teasers'] = $this
    ->t('teasers');
  $options['full_posts'] = $this
    ->t('full posts');
  $options['titles'] = $this
    ->t('titles');
  $options['titles_linked'] = $this
    ->t('titles (linked)');
  $options['fields'] = $this
    ->t('fields');
  return $options;
}