Browse
For agents
About
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce
/
trunk
HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce
vtrunk
Switch version
2.15.0
trunk
1.0.0
1.0.1
1.1.0
1.1.1
1.1.2
1.1.3
1.2.0
1.2.1
1.2.2
1.2.3
1.2.4
2.0.0
2.0.1
2.0.2
2.0.3
2.0.4
2.1.2
2.1.3
2.1.5
2.1.6
2.1.7
2.1.8
2.10.0
All 62 releases
Overview
Code
hurrytimer
/
includes
/
ConditionalLogic.php
ConditionalLogic.php
in HurryTimer – An Scarcity and Urgency Countdown Timer for WordPress & WooCommerce trunk, at includes/ConditionalLogic.php
20 lines
252 B
Find file
t
No matching file
Up and down to move
Enter to open
Esc to close
Raw
Download
Zip
View raw
1
<
?
php
2
namespace
HurryTimer
;
3
4
class
ConditionalLogic
5
{
6
protected
$
rules
=
[
]
;
7
8
function
addRule
(
$
rule
)
9
{
10
$
this
->
rules
[
$
rule
[
'
key
'
]
]
=
$
rule
;
11
12
return
$
this
;
13
}
14
15
function
get
(
)
16
{
17
return
$
this
->
rules
;
18
}
19
}
20