AccessResult::cacheUntilConfigurationChanges

public AccessResult::cacheUntilConfigurationChanges(ConfigBase $configuration)

Convenience method, adds the configuration object's cache tag.

Parameters

\Drupal\Core\Config\ConfigBase $configuration: The configuration object whose cache tag to set on the access result.

Return value

$this

Deprecated

in Drupal 8.0.x-dev, will be removed before Drupal 9.0.0. Use ::addCacheableDependency() instead.

File

core/lib/Drupal/Core/Access/AccessResult.php, line 280

Class

AccessResult
Value object for passing an access result with cacheability metadata.

Namespace

Drupal\Core\Access

Code

public function cacheUntilConfigurationChanges(ConfigBase $configuration) {
  return $this->addCacheableDependency($configuration);
}
doc_Drupal
2016-10-29 08:42:30
Comments
Leave a Comment

Please login to continue.