123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: block_forumtree.php 25525 2011-11-14 04:39:11Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- require_once libfile('commonblock_html', 'class/block/html');
- class block_forumtree extends commonblock_html {
- function block_forumtree() {}
- function name() {
- return lang('blockclass', 'blockclass_html_script_forumtree');
- }
- function getsetting() {
- global $_G;
- $settings = array(
- 'fids' => array(
- 'title' => 'forumtree_fids',
- 'type' => 'mselect',
- 'value' => array()
- ),
- );
- loadcache('forums');
- $settings['fids']['value'][] = array(0, lang('portalcp', 'block_all_forum'));
- foreach($_G['cache']['forums'] as $fid => $forum) {
- $settings['fids']['value'][] = array($fid, ($forum['type'] == 'forum' ? str_repeat(' ', 4) : ($forum['type'] == 'sub' ? str_repeat(' ', 8) : '')).$forum['name']);
- }
- return $settings;
- }
- function getdata($style, $parameter) {
- global $_G;
- if(!$_G['cache']['forums']) {
- loadcache('forums');
- }
- $forumlist = array();
- $parameter['fids'] = (array)$parameter['fids'];
- $parameter['fids'] = array_map('intval', $parameter['fids']);
- foreach($_G['cache']['forums'] as $forum) {
- if(!$forum['status']) {
- continue;
- }
- if(!$parameter['fids'] || in_array(0, $parameter['fids']) || in_array($forum['fid'], $parameter['fids'])) {
- $forum['name'] = addslashes($forum['name']);
- $forum['type'] != 'group' && $haschild[$forum['fup']] = true;
- $forumlist[] = $forum;
- }
- }
- include template('common/block_forumtree');
- return array('html' => $return, 'data' => null);
- }
- }
- ?>
|