mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-30 21:15:34 +08:00
18 lines
549 B
PHP
18 lines
549 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class taoexlib_finder_smslog{
|
||
var $detail_edit = '详细列表';
|
||
function detail_edit($id){
|
||
$render = app::get('taoexlib')->render();
|
||
$oItem = kernel::single("taoexlib_mdl_smslog");
|
||
$items = $oItem->getList('*',
|
||
array('id' => $id), 0, 1);
|
||
$render->pagedata['item'] = $items[0];
|
||
$render->display('admin/smsdetail.html');
|
||
//return 'detail';
|
||
}
|
||
} |