deleteNodeImmediately() public method

{@inheritDoc}
public deleteNodeImmediately ( $path )
 /**
  * {@inheritDoc}
  */
 public function deleteNodeImmediately($absPath)
 {
     $result = parent::deleteNodeImmediately($absPath);
     if ($result) {
         $this->clearCaches();
     }
     return $result;
 }
Example #2
0
 /**
  * {@inheritDoc}
  */
 public function deleteNodeImmediately($absPath)
 {
     $result = parent::deleteNodeImmediately($absPath);
     if ($result && isset($this->caches['nodes'])) {
         $this->caches['nodes']->deleteAll();
     }
     return $result;
 }