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

add format parameters to activity type condition

parent 1db68f65
No related branches found
No related tags found
No related merge requests found
......@@ -146,5 +146,31 @@ class CRM_Civirules_Utils {
}
return $optionGroupId;
}
/**
* Function to get option label with value and option group id
*
* @param int $optionGroupId
* @param mixed $optionValue
* @return array|bool
* @access public
* @static
*/
public static function getOptionLabelWithValue($optionGroupId, $optionValue) {
if (empty($optionGroupId) or empty($optionValue)) {
return FALSE;
} else {
$params = array(
'option_group_id' => $optionGroupId,
'value' => $optionValue,
'return' => 'label'
);
try {
return civicrm_api3('OptionValue', 'Getvalue', $params);
} catch (CiviCRM_API3_Exception $ex) {
return false;
}
}
}
}
......@@ -49,4 +49,19 @@ class CRM_CivirulesConditions_Activity_Type extends CRM_Civirules_Condition {
}
return false;
}
/**
* Returns a user friendly text explaining the condition params
* e.g. 'Older than 65'
*
* @return string
* @access public
*/
public function userFriendlyConditionParams() {
$activityTypeLabel = CRM_Civirules_Utils::getOptionLabelWithValue(CRM_Civirules_Utils::getOptionGroupIdWithName('activity_type'),
$this->conditionParams['activity_type_id']);
if (!empty($activityTypeLabel)) {
return 'Activity type is '.$activityTypeLabel;
}
return '';
}
}
\ 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