Sulu\Component\PHPCR\SessionManager\SessionManagerInterface::getWebspacePath PHP 메소드

getWebspacePath() 공개 메소드

Returns the webspace path for given webspace.
public getWebspacePath ( $webspaceKey ) : string
리턴 string
    public function getWebspacePath($webspaceKey);

Usage Example

예제 #1
0
 /**
  * {@inheritdoc}
  */
 public function remove($webspaceKey, $key)
 {
     $propertyName = $this->getPropertyName($key);
     $this->sessionManager->setNodeProperty($this->deprecatedSessionManager->getWebspacePath($webspaceKey), $propertyName, null);
     $this->sessionManager->flush();
 }