Код |
---|
if($bLink || file_exists($filename)) { $res .= '<link href="'.$css_path.'" type="text/css" rel="stylesheet"'.($bXhtmlStyle? ' /':'').'>'."\n"; } |
Код |
---|
if($bLink || file_exists($filename)) { $bOpera = (strpos($_SERVER["HTTP_USER_AGENT"], "Opera") !== false); $res .= '<link href="'.$css_path.($bOpera? '':'?'.filemtime($filename)).'" type="text/css" rel="stylesheet"'.($bXhtmlStyle? ' /':'').'>'."\n"; } |
Код |
---|
<link href="/bitrix/templates/tmplt_29/styles.css?1261654555" type="text/css" rel="stylesheet" /> <link href="/bitrix/templates/tmplt_29/template_styles.css?1258035373" type="text/css" rel="stylesheet" /> |
Код |
---|
foreach($arCSS as $css_path) |
Код |
---|
elseif(defined("SITE_TEMPLATE_ID")) { $path = BX_PERSONAL_ROOT."/templates/".SITE_TEMPLATE_ID; $arCSS[] = $path."/styles.css"; $arCSS[] = $path."/template_styles.css"; } |
Код |
---|
elseif(defined("SITE_TEMPLATE_ID")) { $path = BX_PERSONAL_ROOT."/templates/".SITE_TEMPLATE_ID; $fullpath = $_SERVER["DOCUMENT_ROOT"].$path."/styles.css"; $arCSS[] = $path."/styles.css".(file_exists($fullpath) ? '?'.filemtime($fullpath) : ''); $fullpath = $_SERVER["DOCUMENT_ROOT"].$path."/template_styles.css"; $arCSS[] = $path."/template_styles.css".(file_exists($fullpath) ? '?'.filemtime($fullpath) : ''); } |