You are here

public function ImportProcessorPluginBase::isLocked in Entity Share 8.3

Determines whether this processor should always be enabled.

Return value

bool TRUE if this processor should be forced enabled; FALSE otherwise.

Overrides ImportProcessorInterface::isLocked

File

modules/entity_share_client/src/ImportProcessor/ImportProcessorPluginBase.php, line 142

Class

ImportProcessorPluginBase
Defines a base class from which other processors may extend.

Namespace

Drupal\entity_share_client\ImportProcessor

Code

public function isLocked() {
  return !empty($this->pluginDefinition['locked']);
}