Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92729950
HeraldCondition.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Nov 23, 05:24
Size
671 B
Mime Type
text/x-php
Expires
Mon, Nov 25, 05:24 (2 d)
Engine
blob
Format
Raw Data
Handle
22498903
Attached To
rPH Phabricator
HeraldCondition.php
View Options
<?php
final
class
HeraldCondition
extends
HeraldDAO
{
protected
$ruleID
;
protected
$fieldName
;
protected
$fieldCondition
;
protected
$value
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_SERIALIZATION
=>
array
(
'value'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'fieldName'
=>
'text255'
,
'fieldCondition'
=>
'text255'
,
'value'
=>
'text'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'ruleID'
=>
array
(
'columns'
=>
array
(
'ruleID'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment