You are here

public function RequestPath::summary in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Plugin/Condition/RequestPath.php \Drupal\system\Plugin\Condition\RequestPath::summary()

Provides a human readable summary of the condition's configuration.

Overrides ConditionInterface::summary

File

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

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', array(
      '@pages' => $pages,
    ));
  }
  return $this
    ->t('Return true on the following pages: @pages', array(
    '@pages' => $pages,
  ));
}