public function ProcessorPluginBase::isLocked in Facets 8
Same name in this branch
- 8 src/Processor/ProcessorPluginBase.php \Drupal\facets\Processor\ProcessorPluginBase::isLocked()
- 8 modules/facets_summary/src/Processor/ProcessorPluginBase.php \Drupal\facets_summary\Processor\ProcessorPluginBase::isLocked()
Determines whether this processor should always be enabled.
Return value
bool TRUE if this processor should be forced enabled; FALSE otherwise.
Overrides ProcessorInterface::isLocked
File
- modules/
facets_summary/ src/ Processor/ ProcessorPluginBase.php, line 53
Class
- ProcessorPluginBase
- A base class for plugins that implements most of the boilerplate.
Namespace
Drupal\facets_summary\ProcessorCode
public function isLocked() {
return !empty($this->pluginDefinition['locked']);
}