add template functions for html imports

This commit is contained in:
Bernhard Posselt 2014-09-08 21:19:44 +02:00
parent 70abce0482
commit 4aff85cd0c
1 changed files with 10 additions and 0 deletions

View File

@ -41,6 +41,16 @@ function style($app, $file) {
OC_Util::addStyle($app, $file);
}
/**
* Shortcut for HTML imports
* @param string $app the appname
* @param string $file the path relative to the app's component folder
*/
function component($app, $file) {
$url = link_to($app, 'component/' . $file);
OC_Util::addHeader('link', array('rel' => 'import', 'href' => $url));
}
/**
* make OC_Helper::linkTo available as a simple function
* @param string $app app