IsSuperUserCacheContext.php in Drupal 8
File
core/lib/Drupal/Core/Cache/Context/IsSuperUserCacheContext.php
View source
<?php
namespace Drupal\Core\Cache\Context;
use Drupal\Core\Cache\CacheableMetadata;
class IsSuperUserCacheContext extends UserCacheContextBase implements CacheContextInterface {
public static function getLabel() {
return t('Is super user');
}
public function getContext() {
return (int) $this->user
->id() === 1 ? '1' : '0';
}
public function getCacheableMetadata() {
return new CacheableMetadata();
}
}