迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
打赏插件只有打赏人看得到自己支出的记录,我们想同时给作者添加打赏收入记录。
给打赏人的控制器里是这么写
$this->db->where('uid', $this->uid )->order_by('inputtime DESC');
那么给作者的控制器怎么写?
$this->db->where('uid', $content['uid'] )->order_by('inputtime DESC');
显示不出来
class Author_Home extends M_Controller { /** * */ public function __construct() { parent::__construct(); } // public function index() { $page = max((int)$this->input->get('page'), 1); $this->db->where('uid', $content['uid'] )->order_by('inputtime DESC'); if ($this->input->get('action') == 'more') { // ajax $data = $this->db->limit($this->pagesize, $this->pagesize * ($page - 1))->get("app_reward")->result_array(); if (!$data) { exit(null); } $this->template->assign('list', $data); $this->template->display('author_records_data.html'); } else { $this->template->assign(array( 'page' => max(2, $page + 1), 'list' => $this->db->limit($page ? $page * $this->pagesize : $this->pagesize)->get("app_reward")->result_array(), 'moreurl' => 'index.php?s=member&app=reward&c='.$this->router->class.'&m='.$this->router->method.'&action=more' )); $this->template->display('author_records.html'); } } }
$content['uid']