Skip to content
Snippets Groups Projects
Commit c4e7103e authored by jaapjansma's avatar jaapjansma
Browse files

made uninstaller and made it ready for managed entities

parent b7cb6bbc
No related branches found
No related tags found
No related merge requests found
......@@ -72,6 +72,14 @@ class CRM_Civirules_BAO_Action extends CRM_Civirules_DAO_Action {
if (empty($actionId)) {
throw new Exception('action id can not be empty when attempting to delete a civirule action');
}
if (!CRM_Core_DAO::checkTableExists(self::getTableName())) {
return;
}
//delete rows from rule_action to prevent a foreign key constraint error
CRM_Core_DAO::executeQuery("DELETE FROM `civirule_rule_action` where `action_id` = %1", array(1 => array($actionId, 'Integer')));
$action = new CRM_Civirules_BAO_Action();
$action->id = $actionId;
$action->delete();
......
......@@ -75,6 +75,14 @@ class CRM_Civirules_BAO_Condition extends CRM_Civirules_DAO_Condition {
if (empty($conditionId)) {
throw new Exception('condition id can not be empty when attempting to delete a civirule condition');
}
if (!CRM_Core_DAO::checkTableExists(self::getTableName())) {
return;
}
//delete rows from rule_condition to prevent a foreign key constraint error
CRM_Core_DAO::executeQuery("DELETE FROM `civirule_rule_condition` where `condition_id` = %1", array(1 => array($conditionId, 'Integer')));
$condition = new CRM_Civirules_BAO_Condition();
$condition->id = $conditionId;
$condition->delete();
......
......@@ -20,4 +20,8 @@ class CRM_Civirules_Upgrader extends CRM_Civirules_Upgrader_Base {
$this->executeSqlFile('sql/createCiviruleRuleCondition.sql');
$this->executeSqlFile('sql/createCiviruleRuleLog.sql');
}
public function uninstall() {
$this->executeSqlFile('sql/uninstall.sql');
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment