You are here

interface LockableInterface in Feeds 8.3

Interface for plugins that want to lock their configuration.

@todo More docs.

Hierarchy

Expanded class hierarchy of LockableInterface

All classes that implement LockableInterface

3 files declare their use of LockableInterface
EntityProcessorInterface.php in src/Plugin/Type/Processor/EntityProcessorInterface.php
FeedType.php in src/Entity/FeedType.php
FeedTypeForm.php in src/FeedTypeForm.php

File

src/Plugin/Type/LockableInterface.php, line 10

Namespace

Drupal\feeds\Plugin\Type
View source
interface LockableInterface {

  /**
   * Returns whether or not this plugin is locked.
   *
   * @return bool
   *   Returns true if the plugin is locked, false if not.
   */
  public function isLocked();

}

Members

Namesort descending Modifiers Type Description Overrides
LockableInterface::isLocked public function Returns whether or not this plugin is locked. 1