Same filename and directory in other branches
- 8.x-3.x src/TabRendererBase.php
Namespace
Drupal\quicktabs
Fichier
-
src/TabRendererBase.php
View source
<?php
namespace Drupal\quicktabs;
use Drupal\Component\Plugin\PluginBase;
use Drupal\quicktabs\Entity\QuickTabsInstance;
abstract class TabRendererBase extends PluginBase implements TabRendererInterface {
public function getName() {
return $this->pluginDefinition['name'];
}
public function optionsForm(QuickTabsInstance $instance) {
return [];
}
public abstract function render(QuickTabsInstance $instance);
}
Classes
| Titre |
Deprecated |
Résumé |
| TabRendererBase |
|
Base implementation for plugins that render tabbed output. |