DataStreamTypeBase.php in farmOS 2.x
File
modules/core/data_stream/src/Plugin/DataStream/DataStreamType/DataStreamTypeBase.php
View source
<?php
namespace Drupal\data_stream\Plugin\DataStream\DataStreamType;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Drupal\Core\Plugin\PluginBase;
abstract class DataStreamTypeBase extends PluginBase implements ContainerFactoryPluginInterface, DataStreamTypeInterface {
public function getLabel() {
return $this->pluginDefinition['label'];
}
public function buildFieldDefinitions() {
return [];
}
public function getViewsData() {
return [];
}
}