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


PHP ModelCriteria::setFormatter方法代碼示例

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


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

示例1: testFormatter

 public function testFormatter()
 {
     $c = new ModelCriteria('bookstore', 'Book');
     $this->assertTrue($c->getFormatter() instanceof PropelFormatter, 'getFormatter() returns a PropelFormatter instance');
     $c = new ModelCriteria('bookstore', 'Book');
     $c->setFormatter(ModelCriteria::FORMAT_STATEMENT);
     $this->assertTrue($c->getFormatter() instanceof PropelStatementFormatter, 'setFormatter() accepts the name of a PropelFormatter class');
     try {
         $c->setFormatter('Book');
         $this->fail('setFormatter() throws an exception when passed the name of a class not extending PropelFormatter');
     } catch (PropelException $e) {
         $this->assertTrue(true, 'setFormatter() throws an exception when passed the name of a class not extending PropelFormatter');
     }
     $c = new ModelCriteria('bookstore', 'Book');
     $formatter = new PropelStatementFormatter();
     $c->setFormatter($formatter);
     $this->assertTrue($c->getFormatter() instanceof PropelStatementFormatter, 'setFormatter() accepts a PropelFormatter instance');
     try {
         $formatter = new Book();
         $c->setFormatter($formatter);
         $this->fail('setFormatter() throws an exception when passed an object not extending PropelFormatter');
     } catch (PropelException $e) {
         $this->assertTrue(true, 'setFormatter() throws an exception when passedan object not extending PropelFormatter');
     }
 }
開發者ID:ketheriel,項目名稱:ETVA,代碼行數:25,代碼來源:ModelCriteriaTest.php

示例2: __construct

 /**
  * Constructor
  *
  * @param ModelCriteria $query
  * @param callback|bool|null $formatterFunction callback to filter objects through
  *   callback. null to use PropelObjectFiltering. false to use query formatter.
  */
 public function __construct(ModelCriteria $query, $formatterFunction = null)
 {
     $this->query = $query;
     $this->formatterFunction = $formatterFunction;
     if ($formatterFunction !== false) {
         $this->query->setFormatter($this);
     }
 }
開發者ID:bombayworks,項目名稱:currycms,代碼行數:15,代碼來源:QueryWrapper.php

示例3: testFindOneWithClassAndColumn

 public function testFindOneWithClassAndColumn()
 {
     BookstoreDataPopulator::populate();
     BookPeer::clearInstancePool();
     AuthorPeer::clearInstancePool();
     ReviewPeer::clearInstancePool();
     $c = new ModelCriteria('bookstore', 'Book');
     $c->setFormatter(ModelCriteria::FORMAT_ARRAY);
     $c->filterByTitle('The Tin Drum');
     $c->join('Book.Author');
     $c->withColumn('Author.FirstName', 'AuthorName');
     $c->withColumn('Author.LastName', 'AuthorName2');
     $c->with('Author');
     $con = Propel::getConnection(BookPeer::DATABASE_NAME);
     $book = $c->findOne($con);
     $this->assertEquals(array('Id', 'Title', 'ISBN', 'Price', 'PublisherId', 'AuthorId', 'Author', 'AuthorName', 'AuthorName2'), array_keys($book), 'withColumn() do not change the resulting model class');
     $this->assertEquals('The Tin Drum', $book['Title']);
     $this->assertEquals('Gunter', $book['Author']['FirstName'], 'PropelArrayFormatter correctly hydrates withclass and columns');
     $this->assertEquals('Gunter', $book['AuthorName'], 'PropelArrayFormatter adds withColumns as columns');
     $this->assertEquals('Grass', $book['AuthorName2'], 'PropelArrayFormatter correctly hydrates all as columns');
 }
開發者ID:keneanung,項目名稱:gw2spidy,代碼行數:21,代碼來源:PropelArrayFormatterWithTest.php

示例4: testFindOneWithClassAndColumn

 public function testFindOneWithClassAndColumn()
 {
     BookstoreDataPopulator::populate();
     BookPeer::clearInstancePool();
     AuthorPeer::clearInstancePool();
     ReviewPeer::clearInstancePool();
     $c = new ModelCriteria('bookstore', 'Book');
     $c->setFormatter(ModelCriteria::FORMAT_ON_DEMAND);
     $c->filterByTitle('The Tin Drum');
     $c->join('Book.Author');
     $c->withColumn('Author.FirstName', 'AuthorName');
     $c->withColumn('Author.LastName', 'AuthorName2');
     $c->with('Author');
     $c->limit(1);
     $con = Propel::getConnection(BookPeer::DATABASE_NAME);
     $books = $c->find($con);
     foreach ($books as $book) {
         break;
     }
     $this->assertTrue($book instanceof Book, 'withColumn() do not change the resulting model class');
     $this->assertEquals('The Tin Drum', $book->getTitle());
     $this->assertTrue($book->getAuthor() instanceof Author, 'PropelObjectFormatter correctly hydrates with class');
     $this->assertEquals('Gunter', $book->getAuthor()->getFirstName(), 'PropelObjectFormatter correctly hydrates with class');
     $this->assertEquals('Gunter', $book->getVirtualColumn('AuthorName'), 'PropelObjectFormatter adds withColumns as virtual columns');
     $this->assertEquals('Grass', $book->getVirtualColumn('AuthorName2'), 'PropelObjectFormatter correctly hydrates all virtual columns');
 }
開發者ID:kalaspuffar,項目名稱:php-orm-benchmark,代碼行數:26,代碼來源:PropelOnDemandFormatterWithTest.php


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