本文整理匯總了PHP中Doctrine\ODM\PHPCR\DocumentManager::restoreVersion方法的典型用法代碼示例。如果您正苦於以下問題:PHP DocumentManager::restoreVersion方法的具體用法?PHP DocumentManager::restoreVersion怎麽用?PHP DocumentManager::restoreVersion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Doctrine\ODM\PHPCR\DocumentManager
的用法示例。
在下文中一共展示了DocumentManager::restoreVersion方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testRestoreVersion
public function testRestoreVersion()
{
$user = $this->dm->find($this->typeVersion, '/functional/versionTestObj');
$this->dm->checkpoint($user);
$user->username = 'nicam';
$this->dm->flush();
$versions = $this->dm->getAllLinearVersions($user);
each($versions);
list($dummy, $versionInfo) = each($versions);
$versionName = $versionInfo['name'];
$versionDocument = $this->dm->findVersionByName($this->typeVersion, '/functional/versionTestObj', $versionName);
$this->dm->restoreVersion($versionDocument);
$this->assertEquals('lsmith', $user->username);
$this->dm->clear();
$user = $this->dm->find($this->typeVersion, '/functional/versionTestObj');
$this->assertEquals('lsmith', $user->username);
}