public function ArchiverPluginDefinitionDecorator::setLabel in Plugin 8.2
Sets the human-readable plugin label.
Parameters
\Drupal\Core\StringTranslation\TranslatableString|string $label: The label.
Return value
$this
Overrides ArrayPluginDefinitionDecorator::setLabel
File
- src/
PluginDefinition/ ArchiverPluginDefinitionDecorator.php, line 15
Class
- ArchiverPluginDefinitionDecorator
- Provides an archiver plugin definition decorator.
Namespace
Drupal\plugin\PluginDefinitionCode
public function setLabel($label) {
$this->arrayDefinition['title'] = $label;
return $this;
}