Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95837979
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
Thu, Dec 19, 19:27
Size
845 B
Mime Type
text/x-php
Expires
Sat, Dec 21, 19:27 (2 d)
Engine
blob
Format
Raw Data
Handle
23062760
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