You are here

public function Config::setPathValue in Rename Admin Paths 8.2

Parameters

string $path:

string $value:

File

src/Config.php, line 95

Class

Config
Config for rename_admin_paths module

Namespace

Drupal\rename_admin_paths

Code

public function setPathValue(string $path, string $value) : void {
  $this
    ->getEditableConfig()
    ->set(sprintf('%s_path_value', $path), $value);
}