public function deleteNodes(array $operations) { $this->assertLoggedIn(); foreach ($operations as $op) { $this->deleteNode($op->srcPath); } return true; }
/** * {@inheritDoc} */ public function deleteNodes(array $operations) { $result = parent::deleteNodes($operations); if ($result) { $this->clearCaches(); } return $result; }