implement clean deletion of Seminaries

This commit is contained in:
oliver 2015-08-16 21:27:36 +02:00
commit 60b7f12f79
25 changed files with 410 additions and 9 deletions

View file

@ -339,6 +339,17 @@
}
/**
* Delete complete Questgroupshierarchy of a Seminary.
*
* @param int $seminaryId ID of Seminary to delete Questgroupshierarchy of
*/
public function deleteQuestgroupshierarchyOfSeminary($seminaryId)
{
$this->db->query('DELETE FROM questgroupshierarchy WHERE seminary_id = ?', 'i', $seminaryId);
}
/**