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

deleteProperties() public method

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

Usage Example

 /**
  * {@inheritDoc}
  */
 public function deleteProperties(array $operation)
 {
     $result = parent::deleteProperties($operation);
     if ($result) {
         // we do not have the node here, otherwise we could use clearNodeCache() and then just invalidate all queries
         $this->clearCaches();
     }
     return $result;
 }
All Usage Examples Of Jackalope\Transport\DoctrineDBAL\Client::deleteProperties