Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93589761
PhabricatorFileTransform.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
Fri, Nov 29, 23:49
Size
1 KB
Mime Type
text/x-php
Expires
Sun, Dec 1, 23:49 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22669045
Attached To
rPH Phabricator
PhabricatorFileTransform.php
View Options
<?php
abstract
class
PhabricatorFileTransform
extends
Phobject
{
abstract
public
function
getTransformName
();
abstract
public
function
getTransformKey
();
abstract
public
function
canApplyTransform
(
PhabricatorFile
$file
);
abstract
public
function
applyTransform
(
PhabricatorFile
$file
);
public
function
generateTransforms
()
{
return
array
(
$this
);
}
public
static
function
getAllTransforms
()
{
static
$map
;
if
(
$map
===
null
)
{
$xforms
=
id
(
new
PhutilSymbolLoader
())
->
setAncestorClass
(
__CLASS__
)
->
loadObjects
();
$result
=
array
();
foreach
(
$xforms
as
$xform_template
)
{
foreach
(
$xform_template
->
generateTransforms
()
as
$xform
)
{
$key
=
$xform
->
getTransformKey
();
if
(
isset
(
$result
[
$key
]))
{
throw
new
Exception
(
pht
(
'Two %s objects define the same transform key ("%s"), but '
.
'each transform must have a unique key.'
,
__CLASS__
,
$key
));
}
$result
[
$key
]
=
$xform
;
}
}
$map
=
$result
;
}
return
$map
;
}
}
Event Timeline
Log In to Comment