Files
web-discuz/source/function/cache/cache_click.php
2025-06-27 21:04:18 +08:00

27 lines
775 B
PHP
Executable File

<?php
/**
* [Discuz!] (C)2001-2099 Comsenz Inc.
* This is NOT a freeware, use is subject to license terms
*
* $Id: cache_click.php 24403 2011-09-16 12:32:45Z zhengqingpeng $
*/
if(!defined('IN_DISCUZ')) {
exit('Access Denied');
}
function build_cache_click() {
$data = $keys = array();
foreach(C::t('home_click')->fetch_all_by_available() as $value) {
$value['icon'] = preg_match('/^https?:\/\//is', $value['icon']) ? $value['icon'] : STATICURL . 'image/click/' . $value['icon'];
if(!isset($data[$value['idtype']]) || count($data[$value['idtype']]) < 8) {
$keys[$value['idtype']] = $keys[$value['idtype']] ? ++$keys[$value['idtype']] : 1;
$data[$value['idtype']][$keys[$value['idtype']]] = $value;
}
}
savecache('click', $data);
}
?>