48 lines
1.0 KiB
PHP
48 lines
1.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* [Discuz!] (C)2001-2099 Comsenz Inc.
|
|
* This is NOT a freeware, use is subject to license terms
|
|
*
|
|
* $Id: block_articlenew.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_articlenew extends block_article {
|
|
function block_articlenew() {
|
|
$this->setting = array(
|
|
'catid' => array(
|
|
'title' => 'articlelist_catid',
|
|
'type' => 'mselect',
|
|
'value' => array(
|
|
),
|
|
),
|
|
'picrequired' => array(
|
|
'title' => 'articlelist_picrequired',
|
|
'type' => 'radio',
|
|
'default' => '0'
|
|
),
|
|
'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_articlenew');
|
|
}
|
|
}
|
|
|
|
?>
|