mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
ef85f49adc
Summary: This commit doesn't change license of any file. It just makes the license implicit (inherited from LICENSE file in the root directory). We are removing the headers for these reasons: - It wastes space in editors, less code is visible in editor upon opening a file. - It brings noise to diff of the first change of any file every year. - It confuses Git file copy detection when creating small files. - We don't have an explicit license header in other files (JS, CSS, images, documentation). - Using license header in every file is not obligatory: http://www.apache.org/dev/apply-license.html#new. This change is approved by Alma Chao (Lead Open Source and IP Counsel at Facebook). Test Plan: Verified that the license survived only in LICENSE file and that it didn't modify externals. Reviewers: epriestley, davidrecordon Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2035 Differential Revision: https://secure.phabricator.com/D3886
61 lines
1.8 KiB
PHP
61 lines
1.8 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Include a CSS or JS static resource by name. This function records a
|
|
* dependency for the current page, so when a response is generated it can be
|
|
* included. You can call this method from any context, and it is recommended
|
|
* you invoke it as close to the actual dependency as possible so that page
|
|
* dependencies are minimized.
|
|
*
|
|
* For more information, see @{article:Adding New CSS and JS}.
|
|
*
|
|
* @param string Name of the celerity module to include. This is whatever you
|
|
* annotated as "@provides" in the file.
|
|
* @return void
|
|
*
|
|
* @group celerity
|
|
*/
|
|
function require_celerity_resource($symbol) {
|
|
$response = CelerityAPI::getStaticResourceResponse();
|
|
$response->requireResource($symbol);
|
|
}
|
|
|
|
|
|
/**
|
|
* Generate a node ID which is guaranteed to be unique for the current page,
|
|
* even across Ajax requests. You should use this method to generate IDs for
|
|
* nodes which require a uniqueness guarantee.
|
|
*
|
|
* @return string A string appropriate for use as an 'id' attribute on a DOM
|
|
* node. It is guaranteed to be unique for the current page, even
|
|
* if the current request is a subsequent Ajax request.
|
|
*
|
|
* @group celerity
|
|
*/
|
|
function celerity_generate_unique_node_id() {
|
|
static $uniq = 0;
|
|
$response = CelerityAPI::getStaticResourceResponse();
|
|
$block = $response->getMetadataBlock();
|
|
|
|
return 'UQ'.$block.'_'.($uniq++);
|
|
}
|
|
|
|
|
|
/**
|
|
* Get the versioned URI for a raw resource, like an image.
|
|
*
|
|
* @param string Path to the raw image.
|
|
* @return string Versioned path to the image, if one is available.
|
|
*
|
|
* @group celerity
|
|
*/
|
|
function celerity_get_resource_uri($resource) {
|
|
$map = CelerityResourceMap::getInstance();
|
|
|
|
$info = $map->lookupFileInformation($resource);
|
|
if ($info) {
|
|
return $info['uri'];
|
|
} else {
|
|
return $resource;
|
|
}
|
|
}
|