Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104744468
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
Wed, Mar 12, 00:46
Size
623 B
Mime Type
text/x-php
Expires
Fri, Mar 14, 00:46 (2 d)
Engine
blob
Format
Raw Data
Handle
24841800
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