Jackalope\Transport\DoctrineDBAL\Client::deleteNodes PHP Method

deleteNodes() public method

{@inheritDoc}
public deleteNodes ( array $operations )
$operations array
    public function deleteNodes(array $operations)
    {
        $this->assertLoggedIn();
        foreach ($operations as $op) {
            $this->deleteNode($op->srcPath);
        }
        return true;
    }

Usage Example

 /**
  * {@inheritDoc}
  */
 public function deleteNodes(array $operations)
 {
     $result = parent::deleteNodes($operations);
     if ($result) {
         $this->clearCaches();
     }
     return $result;
 }
All Usage Examples Of Jackalope\Transport\DoctrineDBAL\Client::deleteNodes