function RequestPath::summary

Same name and namespace in other branches
  1. 9 core/modules/system/src/Plugin/Condition/RequestPath.php \Drupal\system\Plugin\Condition\RequestPath::summary()
  2. 10 core/modules/system/src/Plugin/Condition/RequestPath.php \Drupal\system\Plugin\Condition\RequestPath::summary()
  3. 11.x core/modules/system/src/Plugin/Condition/RequestPath.php \Drupal\system\Plugin\Condition\RequestPath::summary()

Overrides ConditionInterface::summary

File

core/modules/system/src/Plugin/Condition/RequestPath.php, line 133

Class

RequestPath
Provides a 'Request Path' condition.

Namespace

Drupal\system\Plugin\Condition

Code

public function summary() {
    $pages = array_map('trim', explode("\n", $this->configuration['pages']));
    $pages = implode(', ', $pages);
    if (!empty($this->configuration['negate'])) {
        return $this->t('Do not return true on the following pages: @pages', [
            '@pages' => $pages,
        ]);
    }
    return $this->t('Return true on the following pages: @pages', [
        '@pages' => $pages,
    ]);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.