You are here

class WebformUiAccess in Webform 6.x

Same name and namespace in other branches
  1. 8.5 modules/webform_ui/src/Access/WebformUiAccess.php \Drupal\webform_ui\Access\WebformUiAccess

Defines the custom access control handler for the webform UI.

Hierarchy

Expanded class hierarchy of WebformUiAccess

File

modules/webform_ui/src/Access/WebformUiAccess.php, line 13

Namespace

Drupal\webform_ui\Access
View source
class WebformUiAccess {

  /**
   * Check that webform source can be updated by a user.
   *
   * @param \Drupal\webform\WebformInterface $webform
   *   A webform.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   Run access checks for this account.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public static function checkWebformSourceAccess(WebformInterface $webform, AccountInterface $account) {
    return $webform
      ->access('update', $account, TRUE)
      ->andIf(AccessResult::allowedIfHasPermission($account, 'edit webform source'));
  }

  /**
   * Check that webform option source can be updated by a user.
   *
   * @param \Drupal\webform\WebformOptionsInterface $webform_options
   *   A webform options entity.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   Run access checks for this account.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public static function checkWebformOptionSourceAccess(WebformOptionsInterface $webform_options, AccountInterface $account) {
    return $webform_options
      ->access('update', $account, TRUE)
      ->andIf(AccessResult::allowedIfHasPermission($account, 'edit webform source'));
  }

  /**
   * Check that webform can be updated by a user.
   *
   * @param \Drupal\webform\WebformInterface $webform
   *   A webform.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   Run access checks for this account.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public static function checkWebformEditAccess(WebformInterface $webform, AccountInterface $account) {
    return $webform
      ->access('update', $account, TRUE);
  }

  /**
   * Check that webform element type can be added by a user.
   *
   * @param \Drupal\webform\WebformInterface $webform
   *   A webform.
   * @param string $type
   *   An element type.
   * @param \Drupal\Core\Session\AccountInterface $account
   *   Run access checks for this account.
   *
   * @return \Drupal\Core\Access\AccessResultInterface
   *   The access result.
   */
  public static function checkWebformElementAccess(WebformInterface $webform, $type, AccountInterface $account) {

    /** @var \Drupal\webform\Plugin\WebformElementManagerInterface $element_manager */
    $element_manager = \Drupal::service('plugin.manager.webform.element');
    $access = $webform
      ->access('update', $account, TRUE);
    $access = $access
      ->andIf(!$element_manager
      ->isExcluded($type) ? AccessResult::allowed() : AccessResult::forbidden());
    $access
      ->addCacheableDependency($webform);
    $access
      ->addCacheableDependency(\Drupal::config('webform.settings'));
    return $access;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
WebformUiAccess::checkWebformEditAccess public static function Check that webform can be updated by a user.
WebformUiAccess::checkWebformElementAccess public static function Check that webform element type can be added by a user.
WebformUiAccess::checkWebformOptionSourceAccess public static function Check that webform option source can be updated by a user.
WebformUiAccess::checkWebformSourceAccess public static function Check that webform source can be updated by a user.