本文整理汇总了PHP中Content::del方法的典型用法代码示例。如果您正苦于以下问题:PHP Content::del方法的具体用法?PHP Content::del怎么用?PHP Content::del使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Content
的用法示例。
在下文中一共展示了Content::del方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: batchDel
/**
* 批量删除
*/
public function batchDel()
{
$aid = Q('aid', '', '');
if (empty($aid)) {
$this->error('请选择文章');
}
$ContentModel = new Content();
foreach ($aid as $id) {
$ContentModel->del($id);
}
$this->success('删除成功');
}
示例2: del
public function del()
{
$aids = Q("request.aid");
if (!empty($aids)) {
if (!is_array($aids)) {
$aids = array($aids);
}
$Model = new Content($this->mid);
foreach ($aids as $aid) {
$Model->del($aid);
}
$this->success('删除成功');
} else {
$this->error('参数错误');
}
}
示例3: del
public function del()
{
//验证权限
$this->checkAccess();
if ($aid = Q('aid', 0)) {
$ContentModel = new Content();
if ($ContentModel->del($aid)) {
$this->success('删除成功');
} else {
$this->error($ContentModel->error);
}
} else {
$this->error('参数错误');
}
}
示例4: del
public function del()
{
$aid = Q('aid', 0);
if ($aid) {
$ContentModel = new Content($this->_mid);
if ($ContentModel->del($aid)) {
$this->success('删除成功');
} else {
$this->error($ContentModel->error);
}
} else {
$this->error('参数错误');
}
}
示例5: del
/**
* 删除文章
*/
public function del()
{
$aid = Q('aid', 0, 'intval');
if (!$aid) {
$this->error('文章不存在');
}
$ContentModel = new Content($this->_mid);
$result = $ContentModel->find($aid);
if ($result['uid'] != $_SESSION['uid']) {
$this->error('没有删除权限');
}
if ($ContentModel->del($aid)) {
$this->success('删除成功');
} else {
$this->error('aid参数错误');
}
}
示例6: del
public function del()
{
if (!$this->ContentAccess->isDel($this->_cid)) {
$this->error('没有操作权限');
}
$aid = Q('aid', 0);
if ($aid) {
$ContentModel = new Content($this->_mid);
if ($ContentModel->del($aid)) {
$this->success('删除成功');
} else {
$this->error($ContentModel->error);
}
} else {
$this->error('参数错误');
}
}