loadRoleDraftByRoleId() abstract public method

Loads a role draft by the original role ID.
abstract public loadRoleDraftByRoleId ( mixed $roleId ) : array
$roleId mixed ID of the role the draft was created from.
return array
コード例 #1
0
 /**
  * Loads a role draft by the original role ID.
  *
  * @param mixed $roleId ID of the role the draft was created from.
  *
  * @return array
  */
 public function loadRoleDraftByRoleId($roleId)
 {
     try {
         return $this->innerGateway->loadRoleDraftByRoleId($roleId);
     } catch (DBALException $e) {
         throw new RuntimeException('Database error', 0, $e);
     } catch (PDOException $e) {
         throw new RuntimeException('Database error', 0, $e);
     }
 }
コード例 #2
0
 /**
  * Loads a role draft by the original role ID.
  *
  * @param mixed $roleId ID of the role the draft was created from.
  *
  * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException If role is not found
  *
  * @return \eZ\Publish\SPI\Persistence\User\Role
  */
 public function loadRoleDraftByRoleId($roleId)
 {
     $data = $this->roleGateway->loadRoleDraftByRoleId($roleId);
     if (empty($data)) {
         throw new RoleNotFound($roleId, Role::STATUS_DRAFT);
     }
     $role = $this->mapper->mapRole($data);
     foreach ($role->policies as $policy) {
         $this->limitationConverter->toSPI($policy);
     }
     return $role;
 }