예제 #1
0
파일: Table.php 프로젝트: grlf/eyedock
 public function delete($key)
 {
     parent::delete($key);
     if ($this->_groupTableConfig) {
         $table = $this->_groupTableConfig[Am_Protect_Table::GROUP_TABLE];
         $uidField = $this->_groupTableConfig[Am_Protect_Table::GROUP_UID];
         $this->_db->query("DELETE FROM {$table} WHERE ?#=?", $uidField, $key);
     }
 }
예제 #2
0
 public function delete($key)
 {
     parent::delete($key);
     $this->_db->query("DELETE FROM ?_product_product_category WHERE product_category_id=?d", $key);
 }
예제 #3
0
 public function delete($key)
 {
     parent::delete($key);
     $this->_db->query("DELETE FROM ?_resource_resource_category WHERE resource_category_id=?d", $key);
 }
예제 #4
0
 public function delete($key)
 {
     parent::delete($key);
     $this->_db->query("DELETE FROM ?_user_user_group WHERE user_group_id=?d", $key);
 }