Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120025239
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
Tue, Jul 1, 10:40
Size
623 B
Mime Type
text/x-php
Expires
Thu, Jul 3, 10:40 (2 d)
Engine
blob
Format
Raw Data
Handle
27122904
Attached To
rPH Phabricator
PhabricatorTransformedFile.php
View Options
<?php
final
class
PhabricatorTransformedFile
extends
PhabricatorFileDAO
{
protected
$originalPHID
;
protected
$transform
;
protected
$transformedPHID
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'transform'
=>
'text128'
,
),
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