Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106668405
PhabricatorTransformedFile.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, Mar 29, 16:56
Size
620 B
Mime Type
text/x-php
Expires
Mon, Mar 31, 17:56 (2 d)
Engine
blob
Format
Raw Data
Handle
25248728
Attached To
rPH Phabricator
PhabricatorTransformedFile.php
View Options
<?php
final
class
PhabricatorTransformedFile
extends
PhabricatorFileDAO
{
protected
$originalPHID
;
protected
$transform
;
protected
$transformedPHID
;
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'transform'
=>
'text255'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'originalPHID'
=>
array
(
'columns'
=>
array
(
'originalPHID'
,
'transform'
),
'unique'
=>
true
,
),
'transformedPHID'
=>
array
(
'columns'
=>
array
(
'transformedPHID'
),
),
),
)
+
parent
::
getConfiguration
();
}
}
Event Timeline
Log In to Comment