12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: cache_forumrecommend.php 24152 2011-08-26 10:04:08Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- function build_cache_forumrecommend() {
- $data = array();
- $fids = C::t('forum_forum')->fetch_all_fids();
- foreach($fids as $row) {
- require_once libfile('function/group');
- $recommendlist = C::t('forum_forum')->fetch_all_recommend_by_fid($row['fid']);
- foreach($recommendlist as $info) {
- $group = array('fid' => $info['fid'], 'name' => $info['name'], 'threads' => $info['threads'], 'lastpost' => $info['lastpost'], 'icon' => $info['icon'], 'membernum' => $info['membernum'], 'description' => $info['description']);
- $group['icon'] = get_groupimg($group['icon'], 'icon');
- $lastpost = array(0, 0, '', '');
- $group['lastpost'] = is_string($group['lastpost']) ? explode("\t", $group['lastpost']) : $group['lastpost'];
- $group['lastpost'] =count($group['lastpost']) != 4 ? $lastpost : $group['lastpost'];
- list($lastpost['tid'], $lastpost['subject'], $lastpost['dateline'], $lastpost['author']) = $group['lastpost'];
- if($lastpost['tid']) {
- $lastpost['dateline'] = dgmdate($lastpost['dateline'], 'Y-m-d H:i:s');
- if($lastpost['author']) {
- $lastpost['encode_author'] = rawurlencode($lastpost['author']);
- }
- $group['lastpost'] = $lastpost;
- } else {
- $group['lastpost'] = '';
- }
- $data[$row['fid']][] = $group;
- }
- }
- savecache('forumrecommend', $data);
- }
- ?>
|