UserPaymentNoticeAction.class.php 921 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Fanwe 方维直播系统
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: 云淡风轻(1956838968@qq.com)
  8. // +----------------------------------------------------------------------
  9. class UserPaymentNoticeAction extends CommonAction{
  10. public function index()
  11. {
  12. if(trim($_REQUEST['user_id'])!='')
  13. {
  14. $user_id = intval($_REQUEST['user_id']);
  15. $map['user_id'] = $user_id;
  16. }
  17. if (method_exists ( $this, '_filter' )) {
  18. $this->_filter ( $map );
  19. }
  20. $model = M ("UserLog");
  21. if (! empty ( $model )) {
  22. $this->_list ( $model, $map );
  23. }
  24. $list = $this->get("list");
  25. $this->assign("list",$list);
  26. $this->display();
  27. return;
  28. }
  29. }
  30. ?>