當前位置: 首頁>>代碼示例>>PHP>>正文


PHP comment::findByPage方法代碼示例

本文整理匯總了PHP中comment::findByPage方法的典型用法代碼示例。如果您正苦於以下問題:PHP comment::findByPage方法的具體用法?PHP comment::findByPage怎麽用?PHP comment::findByPage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在comment的用法示例。


在下文中一共展示了comment::findByPage方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: comments

 /**
  * Render comment list.
  *
  * @return  string
  */
 public function comments()
 {
     $html = '';
     $comments = comment::findByPage($this->page)->page(1, 10);
     if ($comments->count() > 0) {
         $html .= '<div class="items comments">';
         foreach ($comments as $comment) {
             $html .= tpl::load(__DIR__ . DS . 'template.php', array('field' => $this, 'comment' => $comment));
         }
         $html .= '</div>';
     }
     return $html;
 }
開發者ID:DerZyklop,項目名稱:gutesache.pxwrk.de,代碼行數:18,代碼來源:comments.php

示例2: comments

 /**
  * Retrieve all comments for the current page.
  *
  * @param   string  $page_uri  Page uri.
  * @param   array   $args      Optional arguments.
  *
  * @return  Comments
  */
 function comments($page_uri = null, $args = array())
 {
     if (is_null($page_uri)) {
         $page_uri = page()->uri();
     }
     // Customize query to perform
     $defaults = array('walker' => null, 'echo' => true, 'author' => false, 'user' => false, 'order_by' => 'id', 'order' => 'DESC', 'unapproved' => true, 'page' => 1, 'per_page' => 20);
     $args = array_merge($defaults, $args);
     extract($args, EXTR_SKIP);
     // Prepare query
     $query = comment::findByPage($page_uri);
     // Approved comments only
     if ($unapproved === false) {
         $query->andWhere('status', '=', Comment::STATUS_APPROVED);
     }
     // Specifc author only
     if (!empty($author)) {
         $query->andWhere('author', 'LIKE', $author);
     } else {
         if (!empty($user)) {
             $user = $user instanceof User ? $user->username() : $user;
             $query->andWhere('username', 'LIKE', $user);
         }
     }
     // Order by clause
     if (in_array($order_by, array('id', 'created_at', 'updated_at'))) {
         $order = strtoupper($order) === 'DESC' ? $order : 'ASC';
         $query->order($order_by . ' ' . $order);
     }
     // Perform query
     $comments = $query->page($page, $per_page);
     // Render comments if requested
     if ($echo) {
         $walker = !is_null($walker) ? new $walker() : new Comments\View\Walker();
         $output = $walker->walk($comments);
         echo $output;
     }
     return $comments;
 }
開發者ID:buditanrim,項目名稱:kirby-comments,代碼行數:47,代碼來源:helpers.php

示例3: findComments

 /**
  * Get all comments for a given page uri. Respects optional request parameter.
  *
  * @param   string  $uri  Page uri
  * @return  Collection
  */
 protected function findComments($uri)
 {
     // Take optional url paramaters into account
     $page = get('page', 1);
     $perPage = get('per_page', 30);
     return comment::findByPage($uri)->page($page, $perPage);
 }
開發者ID:buditanrim,項目名稱:kirby-comments,代碼行數:13,代碼來源:comment.php


注:本文中的comment::findByPage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。