12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: block_topichot.php 23608 2011-07-27 08:10:07Z cnteacher $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- require_once libfile('block_topic', 'class/block/portal');
- class block_topichot extends block_topic {
- function block_topichot() {
- $this->setting = array(
- 'picrequired' => array(
- 'title' => 'topiclist_picrequired',
- 'type' => 'radio',
- 'default' => '0'
- ),
- 'titlelength' => array(
- 'title' => 'topiclist_titlelength',
- 'type' => 'text',
- 'default' => 40
- ),
- 'summarylength' => array(
- 'summary' => 'topiclist_summarylength',
- 'type' => 'text',
- 'default' => 80
- ),
- 'startrow' => array(
- 'title' => 'topiclist_startrow',
- 'type' => 'text',
- 'default' => 0
- ),
- );
- }
- function name() {
- return lang('blockclass', 'blockclass_topic_script_topichot');
- }
- function cookeparameter($parameter) {
- $parameter['orderby'] = 'viewnum';
- return $parameter;
- }
- }
- ?>
|