コード例 #1
0
ファイル: Pah.php プロジェクト: saifulihsan/gkkd-jogja
 static function delete_comments($type, $type_no)
 {
     $criteria = new CDbCriteria();
     $criteria->addCondition("type=" . $type);
     $criteria->addCondition("id=" . $type_no);
     $comment = PahComments::model()->find($criteria);
     $comment->delete();
 }