content_planner-8.x-1.x-dev/modules/content_kanban/src/Access/AccessCheck.php
modules/content_kanban/src/Access/AccessCheck.php
<?php
namespace Drupal\content_kanban\Access;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Routing\Access\AccessInterface;
/**
* Implements AccessCheck class.
*
* @package Drupal\my_module\Access
*/
class AccessCheck implements AccessInterface {
/**
* Check if user can access the Content Kanban.
*
* @param \Drupal\Core\Session\AccountInterface $account
* The the current user.
*
* @return \Drupal\Core\Access\AccessResultAllowed|\Drupal\Core\Access\AccessResultForbidden
* Returns the access result.
*/
public function canAccessContentKanban(AccountInterface $account) {
if ($account->hasPermission('manage own content with content kanban') ||
$account->hasPermission('manage any content with content kanban')) {
return AccessResult::allowed();
}
return AccessResult::forbidden();
}
}
