Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101639599
CelerityResources.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, Feb 12, 08:35
Size
845 B
Mime Type
text/x-php
Expires
Fri, Feb 14, 08:35 (2 d)
Engine
blob
Format
Raw Data
Handle
24206181
Attached To
rPH Phabricator
CelerityResources.php
View Options
<?php
/**
* Defines the location of static resources.
*/
abstract
class
CelerityResources
extends
Phobject
{
abstract
public
function
getName
();
abstract
public
function
getResourceData
(
$name
);
public
function
getResourceModifiedTime
(
$name
)
{
return
0
;
}
public
function
getCelerityHash
(
$data
)
{
$tail
=
PhabricatorEnv
::
getEnvConfig
(
'celerity.resource-hash'
);
$hash
=
PhabricatorHash
::
digest
(
$data
,
$tail
);
return
substr
(
$hash
,
0
,
8
);
}
public
function
getResourceType
(
$path
)
{
return
CelerityResourceTransformer
::
getResourceType
(
$path
);
}
public
function
getResourceURI
(
$hash
,
$name
)
{
$resources
=
$this
->
getName
();
return
"/res/{$resources}/{$hash}/{$name}"
;
}
public
function
getResourcePackages
()
{
return
array
();
}
public
function
loadMap
()
{
return
array
();
}
}
Event Timeline
Log In to Comment