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
4a10dee2
Commit
4a10dee2
authored
9 years ago
by
jaapjansma
Browse files
Options
Downloads
Patches
Plain Diff
added delay into the action class.
parent
192495b9
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CRM/Civirules/Action.php
+18
-0
18 additions, 0 deletions
CRM/Civirules/Action.php
CRM/Civirules/Engine.php
+15
-11
15 additions, 11 deletions
CRM/Civirules/Engine.php
with
33 additions
and
11 deletions
CRM/Civirules/Action.php
+
18
−
0
View file @
4a10dee2
...
...
@@ -20,6 +20,24 @@ abstract class CRM_Civirules_Action {
*/
abstract
public
function
processAction
(
CRM_Civirules_EventData_EventData
$eventData
);
/**
* You could override this method to create a delay for your action
*
* You might have a specific action which is Send Thank you and which
* includes sending thank you SMS to the donor but only between office hours
*
* If you have a delay you should return a DateTime object with a future date and time
* for when this action should be processed.
*
* If you don't have a delay you should return false
*
* @param DateTime $date the current scheduled date/time
* @return bool|DateTime
*/
public
function
delayTo
(
DateTime
$date
)
{
return
false
;
}
/**
* Method to set RuleActionData
*
...
...
This diff is collapsed.
Click to expand it.
CRM/Civirules/Engine.php
+
15
−
11
View file @
4a10dee2
...
...
@@ -64,7 +64,7 @@ class CRM_Civirules_Engine {
$object
->
setRuleActionData
(
$ruleAction
);
//determine if the action should be executed with a delay
$delay
=
self
::
getActionDelay
(
$ruleAction
);
$delay
=
self
::
getActionDelay
(
$ruleAction
,
$object
);
if
(
$delay
instanceof
DateTime
)
{
self
::
delayAction
(
$delay
,
$object
,
$eventData
);
}
else
{
...
...
@@ -158,28 +158,32 @@ class CRM_Civirules_Engine {
* The delay is calculated by a seperate delay class. See CRM_Civirules_DelayDelay
*
* @param $ruleAction
* @param CRM_Civirules_Action $actionObject
* @return bool|\DateTime
*/
protected
static
function
getActionDelay
(
$ruleAction
)
{
protected
static
function
getActionDelay
(
$ruleAction
,
CRM_Civirules_Action
$actionObject
)
{
//if the delay is empty the
if
(
empty
(
$ruleAction
[
'delay'
]))
{
return
false
;
}
$delayClass
=
unserialize
((
$ruleAction
[
'delay'
]));
if
(
!
(
$delayClass
instanceof
CRM_Civirules_Delay_Delay
))
{
return
false
;
}
$delayedTo
=
new
DateTime
();
$now
=
new
DateTime
();
$delayedTo
=
$delayClass
->
delayTo
(
$delayedTo
);
$delayClass
=
unserialize
((
$ruleAction
[
'delay'
]));
if
(
$delayClass
instanceof
CRM_Civirules_Delay_Delay
)
{
$delayedTo
=
$delayClass
->
delayTo
(
$delayedTo
);
}
if
(
$now
>=
$delayedTo
)
{
$actionDelayedTo
=
$actionObject
->
delayTo
(
$delayedTo
);
if
(
$actionDelayedTo
instanceof
DateTime
)
{
if
(
$now
<
$delayedTo
)
{
return
$actionDelayedTo
;
}
return
false
;
}
elseif
(
$delayedTo
instanceof
DateTime
and
$now
<
$delayedTo
)
{
return
$delayedTo
;
}
return
$delayedTo
;
return
false
;
}
/**
...
...
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