博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
yourphp的edit,updata,dele
阅读量:4981 次
发布时间:2019-06-12

本文共 2337 字,大约阅读时间需要 7 分钟。

参考文件Yourphp\Lib\Action\User\PostAction.class.php

public function add()    {        $form=new Form();        $form->isadmin=0;        $form->doThumb  = $this->Role[$this->_groupid]['allowattachment'] ? 1 : 0;        $form->doAttach = $this->Role[$this->_groupid]['allowattachment'] ? 1 : 0;;        $this->assign ( 'form', $form );        $module = $this->module[$this->moduleid]['name'];         $template =  file_exists(TMPL_PATH.'User/'.$this->sysConfig['DEFAULT_THEME'].'/'.$module.'_edit.html') ? $module.':edit' : 'Post:edit';        $this->display ( $template);    }    public function edit()    {        if(!$this->_userid){            $this->error(L('nologin'));        }        $id = intval($_REQUEST ['id']);                $vo = $this->dao->getById ( $id );         $form=new Form($vo);        $form->isadmin=0;        $form->doAttach= $this->Role[$this->_groupid]['allowattachment'] ? 1 : 0;;        $form->doThumb  = $this->Role[$this->_groupid]['allowattachment'] ? 1 : 0;        $this->assign ( 'vo', $vo );                $this->assign ( 'form', $form );        $module = $this->module[$this->moduleid]['name'];         $template =  file_exists(TMPL_PATH.'User/'.$this->sysConfig['DEFAULT_THEME'].'/'.$module.'_edit.html') ? $module.':edit' : 'Post:edit';        $this->display ( $template);    }    /**     * 录入     *     */    public function insert()    {        if($this->moduleid!=6 && !in_array($this->_groupid,explode(',',$this->categorys[$_POST['catid']]['postgroup']))) $this->error (L('add_no_postgroup'));        $c=A('Admin/Content');        $_POST['ip'] = get_client_ip();        $userid = $this->_userid;        $username =  $this->_username ?  $this->_username : get_safe_replace($_POST['username']);        $c->insert($this->module[$this->moduleid]['name'],$this->fields,$userid, $username,$this->_groupid);    }    function update()    {          if(!$this->_userid){            $this->error(L('nologin'));        }        if($this->moduleid!=6 && !in_array($this->_groupid,explode(',',$this->categorys[$_POST['catid']]['postgroup']))) $this->error (L('add_no_postgroup'));        $c=A('Admin/Content');        $c->update($this->module[$this->moduleid]['name'],$this->fields);    }

 

$date['beizhu']= $_POST['beizhu'];$r = $m->where('id='.$id)->save($date);

 

转载于:https://www.cnblogs.com/wesky/p/3753588.html

你可能感兴趣的文章
Mac系统下安装ipython分别支持python2和python3
查看>>
数学图形(1.45)毛雷尔玫瑰(Maurer rose)
查看>>
python中的关键字---3(内置函数)
查看>>
移动端键盘定制
查看>>
CodeForces 893C (并查集板子题)
查看>>
laravel数据迁移
查看>>
POJ 1316 Self Numbers
查看>>
python标准库之zipfile
查看>>
最短路径-迪杰斯特拉算法(Dijkstra) (简单讲解
查看>>
Redis批量删除脚本
查看>>
lightoj 1061 - N Queen Again(状压dp)
查看>>
codeforces 830 B. Cards Sorting(线段树)
查看>>
linux设置密码过期时间/etc/login.defs
查看>>
Hello World!
查看>>
权限认证
查看>>
VS2012 cocos2d-x-2.1.4及创建跨平台项目
查看>>
用Intent实现activity的跳转
查看>>
搜索引擎使用技巧
查看>>
CSS--背景属性
查看>>
关于字符串检索、关键词的搜索问题:已搜索过的部分不会再被纳入下次搜索的范围内...
查看>>