12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: block_activitynew.php 25525 2011-11-14 04:39:11Z zhangguosheng $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- require_once libfile('block_activity', 'class/block/forum');
- class block_activitynew extends block_activity {
- function block_activitynew() {
- $this->setting = array(
- 'fids' => array(
- 'title' => 'activitylist_fids',
- 'type' => 'mselect',
- 'value' => array()
- ),
- 'viewmod' => array(
- 'title' => 'threadlist_viewmod',
- 'type' => 'radio'
- ),
- 'class' => array(
- 'title' => 'activitylist_class',
- 'type' => 'select',
- 'value' => array()
- ),
- 'titlelength' => array(
- 'title' => 'activitylist_titlelength',
- 'type' => 'text',
- 'default' => 40
- ),
- 'summarylength' => array(
- 'title' => 'activitylist_summarylength',
- 'type' => 'text',
- 'default' => 80
- ),
- 'startrow' => array(
- 'title' => 'activitylist_startrow',
- 'type' => 'text',
- 'default' => 0
- ),
- );
- }
- function name() {
- return lang('blockclass', 'blockclass_activity_script_activitynew');
- }
- function cookparameter($parameter) {
- $parameter['orderby'] = 'dateline';
- return parent::cookparameter($parameter);
- }
- }
- ?>
|