12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- /**
- * [Discuz!] (C)2001-2099 Comsenz Inc.
- * This is NOT a freeware, use is subject to license terms
- *
- * $Id: block_articlespecified.php 23608 2011-07-27 08:10:07Z cnteacher $
- */
- if(!defined('IN_DISCUZ')) {
- exit('Access Denied');
- }
- require_once libfile('block_article', 'class/block/portal');
- class block_articlespecified extends block_article {
- function block_articlespecified() {
- $this->setting = array(
- 'aids' => array(
- 'title' => 'articlelist_aids',
- 'type' => 'text',
- 'value' => ''
- ),
- 'uids' => array(
- 'title' => 'articlelist_uids',
- 'type' => 'text',
- 'value' => ''
- ),
- 'tag' => array(
- 'title' => 'articlelist_tag',
- 'type' => 'mcheckbox',
- 'value' => array(
- ),
- ),
- 'starttime' => array(
- 'title' => 'articlelist_starttime',
- 'type' => 'calendar',
- 'default' => ''
- ),
- 'endtime' => array(
- 'title' => 'articlelist_endtime',
- 'type' => 'calendar',
- 'default' => ''
- ),
- 'titlelength' => array(
- 'title' => 'articlelist_titlelength',
- 'type' => 'text',
- 'default' => 40
- ),
- 'summarylength' => array(
- 'title' => 'articlelist_summarylength',
- 'type' => 'text',
- 'default' => 80
- )
- );
- }
- function name() {
- return lang('blockclass', 'blockclass_article_script_articlespecified');
- }
- }
- ?>
|