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
b8047b83
Commit
b8047b83
authored
9 years ago
by
Erik Hommel
Browse files
Options
Downloads
Patches
Plain Diff
added minutes delay
parent
6c98c680
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CRM/Civirules/Delay/Factory.php
+1
-0
1 addition, 0 deletions
CRM/Civirules/Delay/Factory.php
CRM/Civirules/Delay/XMinutes.php
+34
-0
34 additions, 0 deletions
CRM/Civirules/Delay/XMinutes.php
templates/CRM/Civirules/Delay/XMinutes.tpl
+3
-0
3 additions, 0 deletions
templates/CRM/Civirules/Delay/XMinutes.tpl
with
38 additions
and
0 deletions
CRM/Civirules/Delay/Factory.php
+
1
−
0
View file @
b8047b83
...
...
@@ -9,6 +9,7 @@ class CRM_Civirules_Delay_Factory {
*/
public
static
function
getAllDelayClasses
()
{
return
array
(
new
CRM_Civirules_Delay_XMinutes
(),
new
CRM_Civirules_Delay_XDays
(),
new
CRM_Civirules_Delay_XWeekDay
(),
new
CRM_Civirules_Delay_XWeekDayOfMonth
(),
...
...
This diff is collapsed.
Click to expand it.
CRM/Civirules/Delay/XMinutes.php
0 → 100644
+
34
−
0
View file @
b8047b83
<?php
class
CRM_Civirules_Delay_XMinutes
extends
CRM_Civirules_Delay_Delay
{
protected
$minuteOffset
;
public
function
delayTo
(
DateTime
$date
)
{
$date
->
modify
(
"+ "
.
$this
->
minuteOffset
.
" minutes"
);
return
$date
;
}
public
function
getDescription
()
{
return
ts
(
'Delay by a number of minutes'
);
}
public
function
getDelayExplanation
()
{
return
ts
(
'Delay action by %1 minutes'
,
array
(
1
=>
$this
->
minuteOffset
));
}
public
function
addElements
(
CRM_Core_Form
&
$form
)
{
$form
->
add
(
'text'
,
'xminutes_minuteOffset'
,
ts
(
'Minutes'
));
}
public
function
validate
(
$values
,
&
$errors
)
{
if
(
empty
(
$values
[
'xminutes_minuteOffset'
])
||
!
is_numeric
(
$values
[
'xminutes_minuteOffset'
]))
{
$errors
[
'xminutes_minuteOffset'
]
=
ts
(
'You need to provide a number of minutess'
);
}
}
public
function
setValues
(
$values
)
{
$this
->
minuteOffset
=
$values
[
'xminutes_minuteOffset'
];
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
templates/CRM/Civirules/Delay/XMinutes.tpl
0 → 100644
+
3
−
0
View file @
b8047b83
<div
class=
"label"
>
{
$form.xminutes_minuteOffset.label
}
</div>
<div
class=
"content"
>
{
$form.xminutes_minuteOffset.html
}
</div>
<div
class=
"clear"
></div>
\ 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