本文整理匯總了PHP中TBGSettings::getHeaderIconURL方法的典型用法代碼示例。如果您正苦於以下問題:PHP TBGSettings::getHeaderIconURL方法的具體用法?PHP TBGSettings::getHeaderIconURL怎麽用?PHP TBGSettings::getHeaderIconURL使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TBGSettings
的用法示例。
在下文中一共展示了TBGSettings::getHeaderIconURL方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: elseif
<tr>
<td style="height: auto; overflow: hidden;" valign="top" id="maintd">
<table class="main_header" cellpadding=0 cellspacing=0 width="100%" style="table-layout: fixed;">
<tr>
<td align="left" valign="middle" id="logo_td">
<?php
$link = TBGSettings::getHeaderLink() == '' ? TBGContext::getTBGPath() : TBGSettings::getHeaderLink();
?>
<?php
if (TBGSettings::isUsingCustomHeaderIcon() == TBGSettings::APPEARANCE_HEADER_URL) {
?>
<a class="logo" href="<?php
print $link;
?>
"><img src="<?php
print TBGSettings::getHeaderIconURL();
?>
" alt="[logo]" title="[logo]"></a>
<?php
} elseif (TBGSettings::isUsingCustomHeaderIcon() == TBGSettings::APPEARANCE_HEADER_CUSTOM) {
?>
<a class="logo" href="<?php
print $link;
?>
"><img src="<?php
print TBGContext::getTBGPath();
?>
header.png" alt="[logo]" title="[logo]"></a>
<?php
} else {
?>
示例2: strip_tags
?>
</link>
<description><?php
echo strip_tags(TBGSettings::getTBGname());
?>
</description>
<language><?php
echo mb_strtolower(str_replace('_', '-', TBGContext::getI18n()->getCurrentLanguage()));
?>
</language>
<image>
<?php
if (TBGSettings::isUsingCustomHeaderIcon() == '2') {
?>
<url><?php
echo TBGSettings::getHeaderIconURL();
?>
</url>
<?php
} elseif (TBGSettings::isUsingCustomHeaderIcon() == '1') {
?>
<url><?php
echo TBGContext::getUrlHost() . TBGContext::getTBGPath() . 'header.png';
?>
</url>
<?php
} else {
?>
<url><?php
echo image_url('logo_24.png', false, null, false);
?>