deleteWorkspace() public method

{@inheritDoc}
public deleteWorkspace ( $name )
コード例 #1
0
 /**
  * {@inheritDoc}
  *
  */
 public function deleteWorkspace($name)
 {
     parent::deleteWorkspace($name);
     $this->caches['meta']->delete('workspaces');
     $this->caches['meta']->delete("workspace: {$name}");
     $this->clearCaches();
 }
コード例 #2
0
ファイル: CachedClient.php プロジェクト: viral810/ngSimpleCMS
 /**
  * {@inheritDoc}
  *
  */
 public function deleteWorkspace($name)
 {
     parent::deleteWorkspace($name);
     $this->caches['meta']->delete('workspaces');
     $this->caches['meta']->delete("workspace: {$name}");
     if (isset($this->caches['nodes'])) {
         $this->caches['nodes']->deleteAll();
     }
 }
コード例 #3
0
ファイル: LoggingClient.php プロジェクト: nikophil/cmf-tests
 /**
  * {@inheritDoc}
  */
 public function deleteWorkspace($name)
 {
     $this->transport->deleteWorkspace($name);
 }