Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. RequestPath.php

function RequestPath::summary

Overrides ConditionInterface::summary

File

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

Class

RequestPath
Provides a 'Request Path' condition.

Namespace

Drupal\system\Plugin\Condition

Code

public function summary() {
    if (empty($this->configuration['pages'])) {
        return $this->t('No page is specified');
    }
    $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,
    ]);
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal