You are here

LockableInterface.php in Feeds 8.3

File

src/Plugin/Type/LockableInterface.php
View source
<?php

namespace Drupal\feeds\Plugin\Type;


/**
 * Interface for plugins that want to lock their configuration.
 *
 * @todo More docs.
 */
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();

}

Interfaces

Namesort descending Description
LockableInterface Interface for plugins that want to lock their configuration.