Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
civirules
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ayduns
civirules
Commits
d4fb9bcd
Commit
d4fb9bcd
authored
10 years ago
by
Erik Hommel
Browse files
Options
Downloads
Patches
Plain Diff
add format parameters to activity type condition
parent
1db68f65
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Civirules/Utils.php
+26
-0
26 additions, 0 deletions
CRM/Civirules/Utils.php
CRM/CivirulesConditions/Activity/Type.php
+15
-0
15 additions, 0 deletions
CRM/CivirulesConditions/Activity/Type.php
with
41 additions
and
0 deletions
CRM/Civirules/Utils.php
+
26
−
0
View file @
d4fb9bcd
...
...
@@ -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
;
}
}
}
}
This diff is collapsed.
Click to expand it.
CRM/CivirulesConditions/Activity/Type.php
+
15
−
0
View file @
d4fb9bcd
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment