Horde::includeStylesheetFiles(array(
'nobase' => true,
'nohorde' => true
- ), true);
+ ));
$css = Horde::endBuffer();
/* Some paths */
Horde::startBuffer();
Horde::includeStylesheetFiles(array(
'nobase' => true
- ), true);
+ ));
$css = Horde::endBuffer();
/* Start building the javascript */
/* Output js/css here if we are calling via the api */
if ($this->view->api) {
$GLOBALS['injector']->getInstance('Horde_Themes_Css')->addThemeStylesheet('lightbox.css');
- Horde::includeStylesheetFiles(array('nobase' => true), true);
+ Horde::includeStylesheetFiles(array('nobase' => true));
$includes = $GLOBALS['injector']->createInstance('Horde_Script_Files');
$includes->add('accesskeys.js', 'horde', true);
$includes->add('effects.js', 'horde', true);
*
* @param array $opts Options to pass to
* Horde_Themes_Css::getStylesheetUrls().
- *
- * @param boolean $full Output full uris.
*/
- static public function includeStylesheetFiles(array $opts = array(), $full = false)
+ static public function includeStylesheetFiles(array $opts = array())
{
foreach ($GLOBALS['injector']->getInstance('Horde_Themes_Css')->getStylesheetUrls($opts) as $val) {
- echo '<link href="' . (!$full ? $val : $val->fulluri) . '" rel="stylesheet" type="text/css" />';
+ echo '<link href="' . $val . '" rel="stylesheet" type="text/css" />';
}
}