Jackalope\Version\VersionManager::isCheckedOut PHP Метод

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

{@inheritDoc}
public isCheckedOut ( $absPath )
    public function isCheckedOut($absPath)
    {
        $node = $this->objectManager->getNodeByPath($absPath);
        if (!$node->isNodeType('mix:simpleVersionable')) {
            throw new UnsupportedRepositoryOperationException("Node at {$absPath} is not versionable");
        }
        return $node->getPropertyValue('jcr:isCheckedOut');
    }