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

Sets the property of the node at the given path for all available sessions. This means that the values saved in this way will be immediately available in all workspaces.
public setNodeProperty ( string $nodePath, string $propertyName, mixed $value )
$nodePath string The path of the node to manipulate
$propertyName string The name of the property to set
$value mixed The value to set
Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function remove($webspaceKey, $key)
 {
     $propertyName = $this->getPropertyName($key);
     $this->sessionManager->setNodeProperty($this->deprecatedSessionManager->getWebspacePath($webspaceKey), $propertyName, null);
     $this->sessionManager->flush();
 }