Fz152PluginBase.php in FZ152 8
Namespace
Drupal\fz152File
src/Fz152PluginBase.phpView source
<?php
namespace Drupal\fz152;
use Drupal\Core\Plugin\PluginBase;
/**
* Provides a base class for all types of plugin settings.
*/
abstract class Fz152PluginBase extends PluginBase implements Fz152PluginInterface {
/**
* {@inheritdoc}
*/
public function getId() {
return $this->pluginDefinition['id'];
}
/**
* {@inheritdoc}
*/
public function getSettingsPage() {
return [];
}
/**
* {@inheritdoc}
*/
public function getForms() {
return [];
}
}
Classes
Name | Description |
---|---|
Fz152PluginBase | Provides a base class for all types of plugin settings. |