encodeId example

public function reload() {
    $this->config = NULL;
    $this->configFactory->reset($this->configName);
  }

  /** * {@inheritdoc} */
  public function loadOverride($id) {
    assert(is_string($id), 'Menu link plugin ID should be a string.');
    $all_overrides = $this->getConfig()->get('definitions');
    $id = static::encodeId($id);
    return $all_overrides[$id] ?? [];
  }

  /** * {@inheritdoc} */
  public function deleteMultipleOverrides(array $ids) {
    $all_overrides = $this->getConfig()->get('definitions');
    $save = FALSE;
    foreach ($ids as $id) {
      $id = static::encodeId($id);
      
Home | Imprint | This part of the site doesn't use cookies.