示例#1
0
文件: Course.php 项目: jne21/WBT
 static function delete($courseId)
 {
     if ($id = intval($courseId)) {
         CourseL10n::deleteAll($courseId);
         parent::delete($id);
     }
 }
示例#2
0
文件: Material.php 项目: jne21/WBT
 static function delete($materialId)
 {
     MaterialL10n::deleteAll($materialId);
     parent::delete($materialId);
 }
示例#3
0
文件: Stage.php 项目: jne21/WBT
 static function delete($stageId)
 {
     StageL10n::deleteAll($stageId);
     parent::delete($stageId);
 }
示例#4
0
文件: Lesson.php 项目: jne21/WBT
 static function delete($lessonId)
 {
     LessonL10n::deleteAll($lessonId);
     parent::delete($lessonId);
 }