inc_lister_exam_filehash.php
来自「PPExam 是一个通用的在线考试系统」· PHP 代码 · 共 21 行
PHP
21 行
<?php
Iimport('Lister');
class Lister_Exam_Filehash extends Lister {
function __construct() {
$configs = array (
'table' => '##__exam_filehash',
'where' => '', //need to set
'limit' => '',
'orderby' => '`time` desc',
'els' => array(),
'safearray' => array ('hash',
'time',
),
);
parent::__construct($configs);
}
function Lister_Exam_Filehash() {
$this->__construct();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?