remove old readme
[atutor.git] / docs / mods / _standard / announcements / module_delete.php
1 <?php\r
2 \r
3 function announcements_delete($course) {\r
4         global $db;\r
5 \r
6         /* announcement RSS: */\r
7         if (file_exists(AT_CONTENT_DIR . 'feeds/' . $course . '/RSS1.0.xml')) {\r
8                 @unlink(AT_CONTENT_DIR . 'feeds/' . $course . '/RSS1.0.xml');\r
9         }\r
10         if (file_exists(AT_CONTENT_DIR . 'feeds/' . $course . '/RSS2.0.xml')) {\r
11                 @unlink(AT_CONTENT_DIR . 'feeds/' . $course . '/RSS2.0.xml');\r
12         }\r
13 \r
14         //announcements\r
15         $sql    = "DELETE FROM ".TABLE_PREFIX."news WHERE course_id=$course";\r
16         $result = mysql_query($sql, $db);\r
17 \r
18 }\r
19 \r
20 ?>