Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F94051042
PhabricatorSystemActionLog.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
Tue, Dec 3, 12:45
Size
921 B
Mime Type
text/x-php
Expires
Thu, Dec 5, 12:45 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22724151
Attached To
rPH Phabricator
PhabricatorSystemActionLog.php
View Options
<?php
final
class
PhabricatorSystemActionLog
extends
PhabricatorSystemDAO
{
protected
$actorHash
;
protected
$actorIdentity
;
protected
$action
;
protected
$score
;
protected
$epoch
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'actorHash'
=>
'bytes12'
,
'actorIdentity'
=>
'text255'
,
'action'
=>
'text32'
,
'score'
=>
'double'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'key_epoch'
=>
array
(
'columns'
=>
array
(
'epoch'
),
),
'key_action'
=>
array
(
'columns'
=>
array
(
'actorHash'
,
'action'
,
'epoch'
),
),
),
)
+
parent
::
getConfiguration
();
}
public
function
setActorIdentity
(
$identity
)
{
$this
->
setActorHash
(
PhabricatorHash
::
digestForIndex
(
$identity
));
return
parent
::
setActorIdentity
(
$identity
);
}
}
Event Timeline
Log In to Comment