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
751d6b63
Commit
751d6b63
authored
10 years ago
by
Erik Hommel
Browse files
Options
Downloads
Patches
Plain Diff
cleanup Group Action
parent
b0f0d1eb
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/CivirulesActions/Form/GroupContact.php
+42
-2
42 additions, 2 deletions
CRM/CivirulesActions/Form/GroupContact.php
CRM/CivirulesActions/GroupContact.php
+16
-8
16 additions, 8 deletions
CRM/CivirulesActions/GroupContact.php
with
58 additions
and
10 deletions
CRM/CivirulesActions/Form/GroupContact.php
+
42
−
2
View file @
751d6b63
<?php
/**
* Class for CiviRules Group Contact Action Form
*
* @author Jaap Jansma (CiviCooP) <jaap.jansma@civicoop.org>
* @license AGPL-3.0
*/
class
CRM_CivirulesActions_Form_GroupContact
extends
CRM_Core_Form
{
...
...
@@ -8,7 +14,13 @@ class CRM_CivirulesActions_Form_GroupContact extends CRM_Core_Form {
protected
$action
;
function
preProcess
()
{
/**
* Overridden parent method to do pre-form building processing
*
* @throws Exception when action or rule action not found
* @access public
*/
public
function
preProcess
()
{
$this
->
ruleActionId
=
CRM_Utils_Request
::
retrieve
(
'rule_action_id'
,
'Integer'
);
$this
->
ruleAction
=
new
CRM_Civirules_BAO_RuleAction
();
...
...
@@ -26,11 +38,23 @@ class CRM_CivirulesActions_Form_GroupContact extends CRM_Core_Form {
parent
::
preProcess
();
}
/**
* Method to get groups
*
* @return array
* @access protected
*/
protected
function
getGroups
()
{
return
array
(
''
=>
ts
(
'-- please select --'
))
+
CRM_Contact_BAO_GroupContact
::
getGroupList
();
}
function
buildQuickForm
()
{
/**
* Overridden parent method to build the form
*
* @access public
*/
public
function
buildQuickForm
()
{
$this
->
setFormTitle
();
$this
->
add
(
'hidden'
,
'rule_action_id'
);
...
...
@@ -42,6 +66,12 @@ class CRM_CivirulesActions_Form_GroupContact extends CRM_Core_Form {
array
(
'type'
=>
'cancel'
,
'name'
=>
ts
(
'Cancel'
))));
}
/**
* Overridden parent method to set default values
*
* @return array $defaultValues
* @access public
*/
public
function
setDefaultValues
()
{
$data
=
array
();
$defaultValues
=
array
();
...
...
@@ -55,6 +85,11 @@ class CRM_CivirulesActions_Form_GroupContact extends CRM_Core_Form {
return
$defaultValues
;
}
/**
* Overridden parent method to process form data after submitting
*
* @access public
*/
public
function
postProcess
()
{
$data
[
'group_id'
]
=
$this
->
_submitValues
[
'group_id'
];
...
...
@@ -70,6 +105,11 @@ class CRM_CivirulesActions_Form_GroupContact extends CRM_Core_Form {
$redirectUrl
=
CRM_Utils_System
::
url
(
'civicrm/civirule/form/rule'
,
'action=update&id='
.
$this
->
ruleAction
->
rule_id
,
TRUE
);
CRM_Utils_System
::
redirect
(
$redirectUrl
);
}
/**
* Method to set the form title
*
* @access protected
*/
protected
function
setFormTitle
()
{
$title
=
'CiviRules Edit Action parameters'
;
$this
->
assign
(
'ruleActionHeader'
,
'Edit action '
.
$this
->
action
->
label
.
' of CiviRule '
.
CRM_Civirules_BAO_Rule
::
getRuleLabelWithId
(
$this
->
ruleAction
->
rule_id
));
...
...
This diff is collapsed.
Click to expand it.
CRM/CivirulesActions/GroupContact.php
+
16
−
8
View file @
751d6b63
<?php
/**
* Class for CiviRules Group Contact Action
*
* @author Jaap Jansma (CiviCooP) <jaap.jansma@civicoop.org>
* @license AGPL-3.0
*/
class
CRM_CivirulesActions_GroupContact
extends
CRM_Civirules_Action
{
/**
* Returns an array with parameters used for processing an action
*
* @param array $parameters
* @param CRM_Civirules_EventData_EventData $eventData
* @return array
* @param array $params
* @param object CRM_Civirules_EventData_EventData $eventData
* @return array $params
* @access protected
*/
protected
function
alterApiParameters
(
$param
eter
s
,
CRM_Civirules_EventData_EventData
$eventData
)
{
protected
function
alterApiParameters
(
$params
,
CRM_Civirules_EventData_EventData
$eventData
)
{
//this function could be overridden in subclasses to alter parameters to meet certain criteraia
$param
eter
s
[
'contact_id'
]
=
$eventData
->
getContactId
();
return
$param
eter
s
;
$params
[
'contact_id'
]
=
$eventData
->
getContactId
();
return
$params
;
}
/**
...
...
@@ -22,16 +29,18 @@ class CRM_CivirulesActions_GroupContact extends CRM_Civirules_Action {
*
* @param int $ruleActionId
* @return bool|string
* @access public
*/
public
function
getExtraDataInputUrl
(
$ruleActionId
)
{
return
CRM_Utils_System
::
url
(
'civicrm/civirule/form/action/groupcontact'
,
'rule_action_id='
.
$ruleActionId
);
}
/**
* Ret
r
uns a user friendly text explaining the condition params
* Retu
r
ns a user friendly text explaining the condition params
* e.g. 'Older than 65'
*
* @return string
* @access public
*/
public
function
userFriendlyConditionParams
()
{
$params
=
$this
->
getActionParameters
();
...
...
@@ -41,5 +50,4 @@ class CRM_CivirulesActions_GroupContact extends CRM_Civirules_Action {
}
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