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


PHP ArticlePeer::doSelectJoinBook方法代碼示例

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


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

示例1: getArticlesJoinBook

 public function getArticlesJoinBook($criteria = null, $con = null)
 {
     include_once 'lib/model/om/BaseArticlePeer.php';
     if ($criteria === null) {
         $criteria = new Criteria();
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collArticles === null) {
         if ($this->isNew()) {
             $this->collArticles = array();
         } else {
             $criteria->add(ArticlePeer::CATEGORY_ID, $this->getId());
             $this->collArticles = ArticlePeer::doSelectJoinBook($criteria, $con);
         }
     } else {
         $criteria->add(ArticlePeer::CATEGORY_ID, $this->getId());
         if (!isset($this->lastArticleCriteria) || !$this->lastArticleCriteria->equals($criteria)) {
             $this->collArticles = ArticlePeer::doSelectJoinBook($criteria, $con);
         }
     }
     $this->lastArticleCriteria = $criteria;
     return $this->collArticles;
 }
開發者ID:valerio-bozzolan,項目名稱:openparlamento,代碼行數:24,代碼來源:BaseCategory.php

示例2: getArticlesJoinBook

 /**
  * If this collection has already been initialized with
  * an identical criteria, it returns the collection.
  * Otherwise if this Category is new, it will return
  * an empty collection; or if this Category has previously
  * been saved, it will retrieve related Articles from storage.
  *
  * This method is protected by default in order to keep the public
  * api reasonable.  You can provide public methods for those you
  * actually need in Category.
  */
 public function getArticlesJoinBook($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     if ($criteria === null) {
         $criteria = new Criteria(CategoryPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collArticles === null) {
         if ($this->isNew()) {
             $this->collArticles = array();
         } else {
             $criteria->add(ArticlePeer::CATEGORY_ID, $this->id);
             $this->collArticles = ArticlePeer::doSelectJoinBook($criteria, $con, $join_behavior);
         }
     } else {
         // the following code is to determine if a new query is
         // called for.  If the criteria is the same as the last
         // one, just return the collection.
         $criteria->add(ArticlePeer::CATEGORY_ID, $this->id);
         if (!isset($this->lastArticleCriteria) || !$this->lastArticleCriteria->equals($criteria)) {
             $this->collArticles = ArticlePeer::doSelectJoinBook($criteria, $con, $join_behavior);
         }
     }
     $this->lastArticleCriteria = $criteria;
     return $this->collArticles;
 }
開發者ID:br00k,項目名稱:yavom,代碼行數:37,代碼來源:BaseCategory.php

示例3: getArticlesJoinBook

 public function getArticlesJoinBook($criteria = null, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     if ($criteria === null) {
         $criteria = new Criteria(CategoryPeer::DATABASE_NAME);
     } elseif ($criteria instanceof Criteria) {
         $criteria = clone $criteria;
     }
     if ($this->collArticles === null) {
         if ($this->isNew()) {
             $this->collArticles = array();
         } else {
             $criteria->add(ArticlePeer::CATEGORY_ID, $this->id);
             $this->collArticles = ArticlePeer::doSelectJoinBook($criteria, $con, $join_behavior);
         }
     } else {
         $criteria->add(ArticlePeer::CATEGORY_ID, $this->id);
         if (!isset($this->lastArticleCriteria) || !$this->lastArticleCriteria->equals($criteria)) {
             $this->collArticles = ArticlePeer::doSelectJoinBook($criteria, $con, $join_behavior);
         }
     }
     $this->lastArticleCriteria = $criteria;
     return $this->collArticles;
 }
開發者ID:JimmyVB,項目名稱:Symfony-v1.2,代碼行數:23,代碼來源:BaseCategory.php


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