| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- // +----------------------------------------------------------------------
- // | Fanwe 方维直播系统
- // +----------------------------------------------------------------------
- // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: 云淡风轻(1956838968@qq.com)
- // +----------------------------------------------------------------------
- class UserPaymentNoticeAction extends CommonAction{
- public function index()
- {
- if(trim($_REQUEST['user_id'])!='')
- {
- $user_id = intval($_REQUEST['user_id']);
- $map['user_id'] = $user_id;
- }
- if (method_exists ( $this, '_filter' )) {
- $this->_filter ( $map );
- }
-
- $model = M ("UserLog");
- if (! empty ( $model )) {
- $this->_list ( $model, $map );
- }
- $list = $this->get("list");
- $this->assign("list",$list);
- $this->display();
- return;
- }
-
- }
- ?>
|