StyleTemplateTest.php

Same filename and directory in other branches
  1. 9 core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTemplateTest.php
  2. 10 core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTemplateTest.php
  3. 11.x core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTemplateTest.php

Namespace

Drupal\views_test_data\Plugin\views\style

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/style/StyleTemplateTest.php

View source
<?php

namespace Drupal\views_test_data\Plugin\views\style;

use Drupal\views\Plugin\views\style\StylePluginBase;

/**
 * Provides a general test style template plugin.
 *
 * @ingroup views_style_plugins
 *
 * @ViewsStyle(
 *   id = "test_template_style",
 *   title = @Translation("Test style template plugin"),
 *   help = @Translation("Provides a generic style template test plugin."),
 *   theme = "views_view_style_template_test",
 *   display_types = {"normal", "test"}
 * )
 */
class StyleTemplateTest extends StylePluginBase {
    
    /**
     * {@inheritdoc}
     */
    protected $usesRowPlugin = TRUE;

}

Classes

Title Deprecated Summary
StyleTemplateTest Provides a general test style template plugin.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.