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


PHP blogPostModel::getTableName方法代码示例

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


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

示例1: getCount

 public function getCount($blog_id, $post_id = null, $datetime = null, $expire = null, $post_contact_id = null, $status = self::STATUS_PUBLISHED)
 {
     $where = array();
     $join = array();
     if ($datetime) {
         $where[] = "{$this->table}.datetime > '{$this->escape($datetime)}'";
         if ($contact_id = wa()->getUser()->getId()) {
             $where[] = "{$this->table}.contact_id != " . intval($contact_id);
         }
     }
     if ($post_contact_id = max(0, intval($post_contact_id))) {
         $post_model = new blogPostModel();
         $post_table = $post_model->getTableName();
         $post_table_id = $post_model->getTableId();
         $join[] = " INNER JOIN {$post_table} ON {$post_table}.{$post_table_id} = {$this->table}.post_id";
         $where[] = "{$post_table}.contact_id = {$post_contact_id}";
     }
     if ($status) {
         $where[] = $this->getWhereByField('status', $status, true);
     }
     if ($post_id) {
         $where[] = $this->getWhereByField('post_id', $post_id, true);
     }
     if ($blog_id !== null) {
         $where[] = $this->getWhereByField('blog_id', $blog_id, true);
     }
     if ($datetime) {
         $count_by_post = $post_id && is_array($post_id);
         if ($count_by_post) {
             $count = array_fill_keys($post_id, 0);
         } else {
             $count = 0;
         }
         $sql = "SELECT {$this->table}.{$this->id} AS {$this->id}, post_id FROM {$this->table} " . implode('', $join) . " WHERE (" . implode(') AND (', $where) . ")";
         if ($comments = $this->query($sql)->fetchAll($this->id, true)) {
             $blog_activity = blogActivity::getInstance();
             foreach ($comments as $id => $comment_post_id) {
                 if ($blog_activity->isNew("c.{$comment_post_id}", $id, $expire)) {
                     if ($count_by_post) {
                         ++$count[$comment_post_id];
                     } else {
                         ++$count;
                     }
                 }
             }
             $viewed_comments = array();
         }
     } elseif ($post_id && is_array($post_id)) {
         $sql = "SELECT post_id, COUNT(*) FROM {$this->table} " . implode('', $join) . " WHERE (" . implode(') AND (', $where) . ") GROUP BY post_id";
         $count = $this->query($sql)->fetchAll('post_id', true);
     } else {
         $sql = "SELECT COUNT(*) FROM {$this->table} " . implode('', $join) . " WHERE (" . implode(') AND (', $where) . ")";
         $count = $this->query($sql)->fetchField();
     }
     return $count;
 }
开发者ID:navi8602,项目名称:wa-shop-ppg,代码行数:56,代码来源:blogComment.model.php


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