Exemple #1
0
 /**
  * Deletes a document from the database
  * 
  * @param JForg_Dodb_Document $doc The document to delete
  * 
  * @return void
  * @author Bahtiar Gadimov <*****@*****.**>
  */
 public function delete(JForg_Dodb_Document $doc)
 {
     if ($this->_caching) {
         $this->_cache->delete($doc->fetchDocumentId());
     }
     $this->_delete($doc->fetchDocumentId(), $doc->fetchSpecialProperty('_rev'));
 }