12345678910111213141516171819202122232425262728293031 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: cache_announcements_forum.php 26271 2011-12-07 09:15:53Z chenmengshu $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- function build_cache_announcements_forum() {
- $data = array();
- $data = C::t('forum_announcement')->fetch_by_displayorder(TIMESTAMP);
- if($data) {
- $memberdata = C::t('common_member')->fetch_uid_by_username($data['author']);
- $data['authorid'] = $memberdata['uid'];
- $data['authorid'] = intval($data['authorid']);
- if(empty($data['type'])) {
- unset($data['message']);
- }
- } else {
- $data = array();
- }
- savecache('announcements_forum', $data);
- }
- ?>
|