moveNodes() public method

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