eZ\Publish\Core\Persistence\Legacy\Content\Type\Gateway::deleteGroupAssignment PHP Méthode

deleteGroupAssignment() abstract public méthode

Deletes a group assignments for a Type.
abstract public deleteGroupAssignment ( mixed $groupId, mixed $typeId, integer $status )
$groupId mixed
$typeId mixed
$status integer
    public abstract function deleteGroupAssignment($groupId, $typeId, $status);

Usage Example

 /**
  * Deletes a group assignments for a Type.
  *
  * @param mixed $groupId
  * @param mixed $typeId
  * @param int $status
  */
 public function deleteGroupAssignment($groupId, $typeId, $status)
 {
     try {
         return $this->innerGateway->deleteGroupAssignment($groupId, $typeId, $status);
     } catch (DBALException $e) {
         throw new RuntimeException('Database error', 0, $e);
     } catch (PDOException $e) {
         throw new RuntimeException('Database error', 0, $e);
     }
 }
All Usage Examples Of eZ\Publish\Core\Persistence\Legacy\Content\Type\Gateway::deleteGroupAssignment