本文整理汇总了PHP中Propel\Runtime\ActiveQuery\ModelCriteria::findPk方法的典型用法代码示例。如果您正苦于以下问题:PHP ModelCriteria::findPk方法的具体用法?PHP ModelCriteria::findPk怎么用?PHP ModelCriteria::findPk使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Propel\Runtime\ActiveQuery\ModelCriteria
的用法示例。
在下文中一共展示了ModelCriteria::findPk方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: genericToggleVisibility
/**
* Toggle visibility for an object
*
* @param ModelCriteria $query
* @param UpdateToggleVisibilityEvent $event
*
* @return mixed
*/
public function genericToggleVisibility(ModelCriteria $query, ToggleVisibilityEvent $event)
{
if (null !== ($object = $query->findPk($event->getObjectId()))) {
$newVisibility = !$object->getVisible();
$object->setDispatcher($event->getDispatcher())->setVisible($newVisibility)->save();
$event->setObject($object);
}
return $object;
}
示例2: testFindPkCompositeKey
public function testFindPkCompositeKey()
{
BookstoreDataPopulator::depopulate();
$c = new ModelCriteria('bookstore', 'Propel\\Tests\\Bookstore\\BookListRel');
$bookListRel = $c->findPk(array(1, 2));
$this->assertNull($bookListRel, 'findPk() returns null when the composite primary key is not found');
Propel::enableInstancePooling();
BookstoreDataPopulator::populate();
// save all books to make sure related objects are also saved - BookstoreDataPopulator keeps some unsaved
$c = new ModelCriteria('bookstore', 'Propel\\Tests\\Bookstore\\Book');
$books = $c->find();
foreach ($books as $book) {
$book->save();
}
// retrieve the test data
$c = new ModelCriteria('bookstore', 'Propel\\Tests\\Bookstore\\BookListRel');
$bookListRelTest = $c->findOne();
$pk = $bookListRelTest->getPrimaryKey();
$c = new ModelCriteria('bookstore', 'Propel\\Tests\\Bookstore\\BookListRel');
$bookListRel = $c->findPk($pk);
$this->assertEquals($bookListRelTest, $bookListRel, 'findPk() can find objects with composite primary keys');
}
示例3: findByPrimaryKey
public function findByPrimaryKey(ModelCriteria $query, $key)
{
return $query->findPk($key);
}