本文整理汇总了PHP中ilObjStyleSheet::_lookupUpToDate方法的典型用法代码示例。如果您正苦于以下问题:PHP ilObjStyleSheet::_lookupUpToDate方法的具体用法?PHP ilObjStyleSheet::_lookupUpToDate怎么用?PHP ilObjStyleSheet::_lookupUpToDate使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ilObjStyleSheet
的用法示例。
在下文中一共展示了ilObjStyleSheet::_lookupUpToDate方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getContentStylePath
/**
* get content style path
*
* static (to avoid full reading)
*/
function getContentStylePath($a_style_id)
{
global $ilias;
$rand = rand(1, 999999);
// check global fixed content style
$fixed_style = $ilias->getSetting("fixed_content_style_id");
if ($fixed_style > 0) {
$a_style_id = $fixed_style;
}
// check global default style
if ($a_style_id <= 0) {
$a_style_id = $ilias->getSetting("default_content_style_id");
}
if ($a_style_id > 0 && ilObject::_exists($a_style_id)) {
// check whether file is up to date
if (!ilObjStyleSheet::_lookupUpToDate($a_style_id)) {
$style = new ilObjStyleSheet($a_style_id);
$style->writeCSSFile();
}
return ilUtil::getWebspaceDir("output") . "/css/style_" . $a_style_id . ".css?dummy={$rand}";
} else {
return "./Services/COPage/css/content.css";
}
}