Beispiel #1
0
 public function idelete($block, $id)
 {
     $ofblock = $this->offuscate($block);
     if ($this->iexist($block)) {
         $h = HOUND::DELETE($this->option('DOB_TABLE_PREFIX') . $ofblock);
         $h->WHERE($this->_getFieldId())->equals((int) $id);
         if ($h->execute($this->option('DOB_DEBUG'))) {
             return $this->_unsetBlockFromProps($block);
         }
     }
     return FALSE;
 }