checkout() публичный Метод

TODO: document more clearly. This looks like copy-paste from checkin
См. также: VersionManager::checkout
public checkout ( $absPath )
Пример #1
0
 /**
  * {@inheritDoc}
  *
  * @api
  */
 public function checkout($absPath)
 {
     $this->objectManager->checkout($absPath);
     if ($node = $this->objectManager->getCachedNode($absPath)) {
         // OPTIMIZE: set property jcr:isCheckedOut on node directly? but without triggering write on save()
         $node->setDirty();
     }
 }