本文整理汇总了PHP中CGlobal::websiteLogo方法的典型用法代码示例。如果您正苦于以下问题:PHP CGlobal::websiteLogo方法的具体用法?PHP CGlobal::websiteLogo怎么用?PHP CGlobal::websiteLogo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CGlobal
的用法示例。
在下文中一共展示了CGlobal::websiteLogo方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getWebsiteLogo
static function getWebsiteLogo($delcache = false)
{
if (CGlobal::$websiteLogo === false || is_array(CGlobal::$websiteLogo) && !count(CGlobal::$websiteLogo) || $delcache) {
if (AZArrCache::is_not_cached('websiteLogo', 0, '', $delcache)) {
if (!$delcache) {
CGlobal::$websiteLogo['current'] = array('id' => 0, 'img_src' => 'style/img/header_new/logo.png', 'title' => 'Trang chủ', 'expired' => '');
// For logo management
$re = DB::query("SELECT * FROM website_logo ORDER BY start_date DESC, end_date DESC");
if ($re) {
$logos = array();
$active = false;
while ($row = mysql_fetch_assoc($re)) {
if (isset(CGlobal::$img_server[$row['img_server']])) {
$row['img_src'] = CGlobal::$img_server[$row['img_server']] . UP_FOLDER . '/' . $row['image'];
if ($row['status']) {
$row['active'] = "Active";
}
if ($row['start_date']) {
$row['startDate'] = date('d-m-Y', $row['start_date']);
}
if ($row['end_date']) {
$row['endDate'] = date('d-m-Y', $row['end_date']);
}
$logos[$row['id']] = $row;
// Chọn logo theo sự kiện, hoạt động nào đó của AnhNghĩa
if ($row['status'] && !$active) {
// Nếu trạng thái của logo là đang active và chưa có logo nào được chọn
if (!$row['start_date'] || $row['start_date'] < TIME_NOW) {
if (!$row['end_date'] || $row['end_date'] >= TIME_NOW) {
$active = true;
}
}
if ($active) {
CGlobal::$websiteLogo['current'] = array('id' => $row['id'], 'img_src' => CGlobal::$img_server[$row['img_server']] . UP_FOLDER . '/' . $row['image'], 'title' => AZLib::remove_4_js(AZLib::trimSpace(AZLib::plainText(addslashes($row['title'])))), 'expired' => $row['end_date']);
DB::query("UPDATE website_logo SET status = 0 WHERE id <> " . $row['id']);
}
}
}
}
CGlobal::$websiteLogo['logos'] = $logos;
AZArrCache::set(array('websiteLogo' => CGlobal::$websiteLogo));
}
}
} else {
CGlobal::$websiteLogo = AZArrCache::$arr_cache['websiteLogo'];
AZArrCache::$arr_cache = array();
}
}
}