Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F1421921
PhabricatorConfigManualActivity.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
904 B
Referenced Files
None
Subscribers
None
PhabricatorConfigManualActivity.php
View Options
<?php
final
class
PhabricatorConfigManualActivity
extends
PhabricatorConfigEntryDAO
{
protected
$activityType
;
protected
$parameters
=
array
();
const
TYPE_REINDEX
=
'reindex'
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'parameters'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'activityType'
=>
'text64'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_type'
=>
array
(
'columns'
=>
array
(
'activityType'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
setParameter
(
$key
,
$value
)
{
$this
->
parameters
[
$key
]
=
$value
;
return
$this
;
}
public
function
getParameter
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
parameters
,
$key
,
$default
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Jul 8, 5:52 PM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
323194
Default Alt Text
PhabricatorConfigManualActivity.php (904 B)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment