You are here

class Security in Bamboo Twig 8.3

Same name and namespace in other branches
  1. 8.5 bamboo_twig_security/src/TwigExtension/Security.php \Drupal\bamboo_twig_security\TwigExtension\Security
  2. 8 bamboo_twig_security/src/TwigExtension/Security.php \Drupal\bamboo_twig_security\TwigExtension\Security
  3. 8.2 bamboo_twig_security/src/TwigExtension/Security.php \Drupal\bamboo_twig_security\TwigExtension\Security
  4. 8.4 bamboo_twig_security/src/TwigExtension/Security.php \Drupal\bamboo_twig_security\TwigExtension\Security

Provides a 'Security' Twig Extensions.

Hierarchy

  • class \Drupal\bamboo_twig\TwigExtension\TwigExtensionBase extends \Drupal\bamboo_twig\TwigExtension\Twig_Extension uses \Symfony\Component\DependencyInjection\ContainerAwareTrait
    • class \Drupal\bamboo_twig_security\TwigExtension\Security

Expanded class hierarchy of Security

1 string reference to 'Security'
bamboo_twig_security.services.yml in bamboo_twig_security/bamboo_twig_security.services.yml
bamboo_twig_security/bamboo_twig_security.services.yml
1 service uses Security
bamboo_twig_security.twig.security in bamboo_twig_security/bamboo_twig_security.services.yml
Drupal\bamboo_twig_security\TwigExtension\Security

File

bamboo_twig_security/src/TwigExtension/Security.php, line 10

Namespace

Drupal\bamboo_twig_security\TwigExtension
View source
class Security extends TwigExtensionBase {

  /**
   * List of all Twig functions.
   */
  public function getFunctions() {
    return [
      new \Twig_SimpleFunction('bamboo_has_permission', [
        $this,
        'hasPermission',
      ]),
      new \Twig_SimpleFunction('bamboo_has_role', [
        $this,
        'hasRole',
      ]),
    ];
  }

  /**
   * Unique identifier for this Twig extension.
   */
  public function getName() {
    return 'bamboo_twig.twig.security';
  }

  /**
   * Does the current|given user has the given permission ?
   *
   * @param string $permission
   *   Drupal permission string.
   * @param int $user
   *   (Optional) user id to check permission. Otherwise current user is used.
   *
   * @return bool
   *   True if the current|given user has the given permission. Otherwise FALSE.
   */
  public function hasPermission($permission, $user = NULL) {
    $currentUser = $this
      ->getCurrentUser();
    if (is_null($user) && $currentUser
      ->isAnonymous()) {
      return NULL;
    }
    $user_id = $currentUser
      ->id();
    if (!is_null($user) && is_int($user)) {
      $user_id = $user;
    }
    $account = $this
      ->getUserStorage()
      ->load($user_id);
    if (!$account) {
      return NULL;
    }
    return $account
      ->hasPermission($permission);
  }

  /**
   * Does the current|given user has the given permission ?
   *
   * @param string $role
   *   Drupal role name.
   * @param int $user
   *   (Optional) user id to check permission. Otherwise current user is used.
   *
   * @return bool
   *   True if the current|given user has the given permission. Otherwise FALSE.
   */
  public function hasRole($role, $user = NULL) {
    $currentUser = $this
      ->getCurrentUser();
    if (is_null($user) && $currentUser
      ->isAnonymous()) {
      return NULL;
    }
    $user_id = $currentUser
      ->id();
    if (!is_null($user) && is_int($user)) {
      $user_id = $user;
    }
    $account = $this
      ->getUserStorage()
      ->load($user_id);
    if (!$account) {
      return NULL;
    }
    return $account
      ->hasRole($role);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
Security::getFunctions public function List of all Twig functions.
Security::getName public function Unique identifier for this Twig extension. Overrides TwigExtensionBase::getName
Security::hasPermission public function Does the current|given user has the given permission ?
Security::hasRole public function Does the current|given user has the given permission ?
TwigExtensionBase::getBlockStorage protected function Return the block storage.
TwigExtensionBase::getConfigFactory protected function Provides an interface for a configuration object factory.
TwigExtensionBase::getCurrentRouteMatch protected function Return the current route match.
TwigExtensionBase::getCurrentUser protected function Lazy loading for the Drupal current user account proxy.
TwigExtensionBase::getDateFormatter protected function Provides a service to handle various date related functionality.
TwigExtensionBase::getEntityTypeManager protected function Lazy loading for the Drupal entity type manager.
TwigExtensionBase::getExtensionGuesser protected function Return a singleton mime type to file extension guesser.
TwigExtensionBase::getFieldTypeManager protected function Return the factory for image objects.
TwigExtensionBase::getFileStorage protected function Return the file storage.
TwigExtensionBase::getFileSystemObject protected function Provides helpers to operate on files and stream wrappers.
TwigExtensionBase::getFormBuilder protected function Provides an interface for form building and processing.
TwigExtensionBase::getImageFactory protected function Return the factory for image objects.
TwigExtensionBase::getImageStyleStorage protected function Provides an interface defining an image style.
TwigExtensionBase::getLanguageManager protected function Returns the language manager service.
TwigExtensionBase::getMenuLinkTree protected function Interface for loading, transforming and rendering menu link trees.
TwigExtensionBase::getPluginManagerBlock protected function Manages discovery and instantiation of block plugins.
TwigExtensionBase::getSettingsSingleton protected function Read only settings singleton.
TwigExtensionBase::getStateFactory protected function The state storage service.
TwigExtensionBase::getToken protected function Return the token service.
TwigExtensionBase::getUserStorage protected function Return the user storage.