protected function StateListAccessControlHandler::checkCreateAccess in Country, State and City Fields 8
Separate from the checkAccess because the entity does not yet exist. It will be created during the 'add' process.
Overrides EntityAccessControlHandler::checkCreateAccess
File
- src/
StateListAccessControlHandler.php, line 47  
Class
- StateListAccessControlHandler
 - Access controller for the statelist entity.
 
Namespace
Drupal\country_state_cityCode
protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
  // Check the admin_permission as defined in your @ContentEntityType
  // annotation.
  $admin_permission = $this->entityType
    ->getAdminPermission();
  if ($account
    ->hasPermission($admin_permission)) {
    return AccessResult::allowed();
  }
  return AccessResult::allowedIfHasPermission($account, 'add statelist entity');
}