You are here

public function StorageFilterInterface::filterRename in Config Filter 8.2

Same name and namespace in other branches
  1. 8 src/Config/StorageFilterInterface.php \Drupal\config_filter\Config\StorageFilterInterface::filterRename()

Filters renaming a configuration object in the storage.

Parameters

string $name: The name of a configuration object to rename.

string $new_name: The new name of a configuration object.

bool $rename: Allowing renaming by previous filters.

Return value

bool TRUE to allow renaming, FALSE otherwise.

File

src/Config/StorageFilterInterface.php, line 139

Class

StorageFilterInterface
Interface StorageFilterInterface.

Namespace

Drupal\config_filter\Config

Code

public function filterRename($name, $new_name, $rename);