mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 02:45:33 +08:00
30 lines
658 B
PHP
30 lines
658 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class archive_ctl_log extends desktop_controller{
|
||
|
||
|
||
function index()
|
||
{
|
||
$params = array(
|
||
'title'=>'归档日志',
|
||
'use_buildin_new_dialog' => false,
|
||
'use_buildin_set_tag'=>false,
|
||
'use_buildin_recycle'=>false,
|
||
'use_buildin_export'=>false,
|
||
'use_buildin_import'=>false,
|
||
'use_buildin_filter'=>true,
|
||
'use_view_tab'=>true,
|
||
);
|
||
|
||
$this->finder('archive_mdl_operation_log',$params);
|
||
}
|
||
|
||
|
||
|
||
|
||
}
|
||
?>
|