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