Skip to content
Snippets Groups Projects
Commit 45972d98 authored by Erik Hommel's avatar Erik Hommel
Browse files

temp remove required entity from First Contribution and set validation of...

temp remove required entity from First Contribution and set validation of operations in EditEntity to use config
parent 19c1ab07
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,9 @@ class CRM_Civirules_BAO_Rule extends CRM_Civirules_DAO_Rule {
}
}
if (!isset($rule->name) || empty($rule->name)) {
$rule->name = CRM_Civirules_Utils::buildNameFromLabel($rule->label);
if (isset($rule->label)) {
$rule->name = CRM_Civirules_Utils::buildNameFromLabel($rule->label);
}
}
$rule->save();
self::storeValues($rule, $result);
......
......@@ -25,7 +25,8 @@ class CRM_Civirules_Event_EditEntity {
}
public static function post( $op, $objectName, $objectId, &$objectRef ) {
if ($op != 'edit' && $op != 'create' && $op != 'delete' && $op != 'trash' && $op != 'restore') {
$extensionConfig = CRM_Civirules_Config::singleton();
if (!in_array($op,$extensionConfig->getValidEventOperations())) {
return;
}
......
......@@ -48,14 +48,4 @@ class CRM_CivirulesConditions_FirstContribution extends CRM_Civirules_Condition
public function getExtraDataInputUrl($ruleConditionId) {
return FALSE;
}
/**
* Returns an array with required entity names
*
* @return array
* @access public
*/
public function requiredEntities() {
return array('Contribution');
}
}
\ 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