迅睿CMS框架是一款PHP8高性能·简单易用的CMS开源开发框架,基于MIT开源许可协议发布,免费且不限制商业使用,是免费开源的产品,以万端互联为设计理念,支持的微信公众号、小程序、APP客户端、移动端网站、PC网站等多终端式管理系统。
联系官方销售客服
1835022288
028-61286886
请问我在分类idcatid=7下的文章内容页面添加了表单提交,如何提交时判断该类别下没有可以浏览的页面文章了?
<?php namespace Phpcmf\Controllers; /** * 二次开发时可以修改本文件,不影响升级覆盖 */ class Tet extends \Phpcmf\Home\Mform { public function index() { $this->_Home_List(); } public function show() { $this->_Home_Show(); } public function post() { // 提交前的操作 // 提交处理 $this->_Home_Post(); } // 新增回调函数 protected function _Call_Post($data) { $cp = parent::_Call_Post($data); if ($cp['code']) { // 这里写 提交成功时的 你的程序代码 if (\Phpcmf\Service::M()->table_site(MOD_DIR)->where('catid', $this->index['catid'])->where('cid>'.$data[1]['cid'])->order_by('id desc')->counts()) { $cp['data']['url'] = 'http://172.16.12.19/index.php?c=show&id='.($data[1]['cid']+1); $this->_json($cp['code'], '提交表单成功', $cp['data']); } else { $this->_json($cp['code'], '提交表单成功,没有下一个文章了'); } } else { $this->_json(0, '提交失败', $cp['data']); } } }
if (\Phpcmf\Service::M()->table_site(MOD_DIR)->where('catid', $this->index['catid'])->where('cid>'.$data[1]['cid'])->order_by('id desc')->counts())
if (\Phpcmf\Service::M()->table_site(MOD_DIR)->where('catid', $this->index['catid'])->where('id>'.$data[1]['cid'])->order_by('id desc')->counts())