class IsSuperUserCacheContext

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/Context/IsSuperUserCacheContext.php \Drupal\Core\Cache\Context\IsSuperUserCacheContext
  2. 8.9.x core/lib/Drupal/Core/Cache/Context/IsSuperUserCacheContext.php \Drupal\Core\Cache\Context\IsSuperUserCacheContext
  3. 10 core/lib/Drupal/Core/Cache/Context/IsSuperUserCacheContext.php \Drupal\Core\Cache\Context\IsSuperUserCacheContext

Defines the IsSuperUserCacheContext service, for "super user or not" caching.

Cache context ID: 'user.is_super_user'.

Hierarchy

Expanded class hierarchy of IsSuperUserCacheContext

File

core/lib/Drupal/Core/Cache/Context/IsSuperUserCacheContext.php, line 12

Namespace

Drupal\Core\Cache\Context
View source
class IsSuperUserCacheContext extends UserCacheContextBase implements CacheContextInterface {
    
    /**
     * {@inheritdoc}
     */
    public static function getLabel() {
        return t('Is super user');
    }
    
    /**
     * {@inheritdoc}
     */
    public function getContext() {
        return (int) $this->user
            ->id() === 1 ? '1' : '0';
    }
    
    /**
     * {@inheritdoc}
     */
    public function getCacheableMetadata() {
        return new CacheableMetadata();
    }

}

Members

Title Sort descending Modifiers Object type Summary Overriden Title Overrides
IsSuperUserCacheContext::getCacheableMetadata public function Gets the cacheability metadata for the context. Overrides CacheContextInterface::getCacheableMetadata
IsSuperUserCacheContext::getContext public function Returns the string representation of the cache context. Overrides CacheContextInterface::getContext
IsSuperUserCacheContext::getLabel public static function Returns the label of the cache context. Overrides CacheContextInterface::getLabel
UserCacheContextBase::$user protected property The account object.
UserCacheContextBase::__construct public function Constructs a new UserCacheContextBase class. 1

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