예제 #1
0
파일: Tag.php 프로젝트: rakeshraushan/dase
 public function deleteCategories()
 {
     $tag_cat = new Dase_DBO_TagCategory($this->db);
     $tag_cat->tag_id = $this->id;
     foreach ($tag_cat->find() as $tc) {
         $tc->delete();
     }
 }