当前位置: 首页>>代码示例>>PHP>>正文


PHP AdminAction::add方法代码示例

本文整理汇总了PHP中AdminAction::add方法的典型用法代码示例。如果您正苦于以下问题:PHP AdminAction::add方法的具体用法?PHP AdminAction::add怎么用?PHP AdminAction::add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在AdminAction的用法示例。


在下文中一共展示了AdminAction::add方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: actionSetStatus

 /**
  * 将文章置为某种状态,如置顶
  */
 public function actionSetStatus()
 {
     Users::checkPower('setstatus');
     $keyid = zmf::filterInput($_POST['a']);
     $classify = zmf::filterInput($_POST['b'], 't', 1);
     $_status = zmf::filterInput($_POST['c'], 't', 1);
     if (!$keyid) {
         $this->jsonOutPut(0, '请选择对象');
     }
     if (!in_array($classify, array('posts', 'attachments', 'comments', 'travel'))) {
         $this->jsonOutPut(0, '不允许的类型');
     }
     if (!in_array($_status, array('top', 'canceltop', 'del'))) {
         $this->jsonOutPut(0, '不允许的类型');
     }
     if ($_status == 'top') {
         if ($classify == 'travel') {
             $attr = array('toped' => 1, 'lastTime' => zmf::now());
         } elseif ($classify == 'posts') {
             $attr = array('top' => 1, 'updateTime' => zmf::now());
         } else {
             $attr = array('top' => 1);
         }
     } else {
         if ($_status == 'canceltop') {
             if ($classify == 'travel') {
                 $attr = array('toped' => 0);
             } else {
                 $attr = array('top' => 0);
             }
         } else {
             if ($_status == 'del') {
                 $status = Posts::STATUS_DELED;
                 $attr = array('status' => Posts::STATUS_DELED);
             }
         }
     }
     $ucClassify = ucfirst($classify);
     if (!class_exists($ucClassify)) {
         $this->jsonOutPut(0, '不存在的类型');
     }
     $checkInfo = Posts::checkInfo($info, $keyid, $classify);
     if (!$checkInfo['status']) {
         $this->jsonOutPut(0, $checkInfo['msg']);
     }
     $model = new $ucClassify();
     if ($model->updateByPk($keyid, $attr)) {
         if ($info['uid'] != zmf::uid()) {
             if ($_status == 'top' && $classify == 'posts') {
                 $_noticedata = array('uid' => $info['uid'], 'authorid' => zmf::uid(), 'content' => '您的文章已被置顶,' . CHtml::link('查看详情', array('posts/index', 'id' => $keyid)), 'new' => 1, 'type' => $_status . $ucClassify, 'cTime' => zmf::now(), 'from_id' => $keyid, 'from_num' => 1);
                 Notification::add($_noticedata);
             }
         }
         //记录管理员的操作
         $attr = array('logid' => $keyid, 'classify' => 'top', 'actype' => 'post', 'acvalue' => $_status . $ucClassify, 'desc' => '');
         AdminAction::add($attr);
         $this->jsonOutPut(1, '操作成功');
     } else {
         $this->jsonOutPut(0, '操作失败');
     }
 }
开发者ID:ph7pal,项目名称:wedding,代码行数:64,代码来源:AjaxController.php


注:本文中的AdminAction::add方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。