Same name in other branches
  1. 4.x src/Plugin/views/style/Quicktabs.php \Drupal\quicktabs\Plugin\views\style\Quicktabs::defineOptions()

Set default options.

Fichier

src/Plugin/views/style/Quicktabs.php, line 65

Classe

Quicktabs
Style plugin to render views rows as tabs.

Namespace

Drupal\quicktabs\Plugin\views\style

Code

protected function defineOptions() {
    $options = parent::defineOptions();
    $options['path'] = [
        'default' => 'quicktabs',
    ];
    return $options;
}