1
|
<?php
|
2
|
/**
|
3
|
*
|
4
|
* @category modules
|
5
|
* @package news
|
6
|
* @author WebsiteBaker Project
|
7
|
* @copyright 2004-2009, Ryan Djurovich
|
8
|
* @copyright 2009-2010, Website Baker Org. e.V.
|
9
|
* @link http://www.websitebaker2.org/
|
10
|
* @license http://www.gnu.org/licenses/gpl.html
|
11
|
* @platform WebsiteBaker 2.8.x
|
12
|
* @requirements PHP 4.3.4 and higher
|
13
|
* @version $Id: delete.php 1289 2010-02-10 15:13:21Z kweitzel $
|
14
|
* @filesource $HeadURL: svn://isteam.dynxs.de/wb-archiv/trunk/wb/modules/news/delete.php $
|
15
|
* @lastmodified $Date: 2010-02-10 16:13:21 +0100 (Wed, 10 Feb 2010) $
|
16
|
*
|
17
|
*/
|
18
|
|
19
|
// Must include code to stop this file being access directly
|
20
|
if(defined('WB_PATH') == false)
|
21
|
{
|
22
|
exit("Cannot access this file directly");
|
23
|
}
|
24
|
|
25
|
//get and remove all php files created for the news section
|
26
|
$query_details = $database->query("SELECT * FROM ".TABLE_PREFIX."mod_news_posts WHERE section_id = '$section_id'");
|
27
|
if($query_details->numRows() > 0) {
|
28
|
while($link = $query_details->fetchRow()) {
|
29
|
if(is_writable(WB_PATH.PAGES_DIRECTORY.$link['link'].PAGE_EXTENSION)) {
|
30
|
unlink(WB_PATH.PAGES_DIRECTORY.$link['link'].PAGE_EXTENSION);
|
31
|
}
|
32
|
}
|
33
|
}
|
34
|
//check to see if any other sections are part of the news page, if only 1 news is there delete it
|
35
|
$query_details = $database->query("SELECT * FROM ".TABLE_PREFIX."sections WHERE page_id = '$page_id'");
|
36
|
if($query_details->numRows() == 1) {
|
37
|
$query_details2 = $database->query("SELECT * FROM ".TABLE_PREFIX."pages WHERE page_id = '$page_id'");
|
38
|
$link = $query_details2->fetchRow();
|
39
|
if(is_writable(WB_PATH.PAGES_DIRECTORY.$link['link'].PAGE_EXTENSION)) {
|
40
|
unlink(WB_PATH.PAGES_DIRECTORY.$link['link'].PAGE_EXTENSION);
|
41
|
}
|
42
|
}
|
43
|
|
44
|
$database->query("DELETE FROM ".TABLE_PREFIX."mod_news_posts WHERE section_id = '$section_id'");
|
45
|
$database->query("DELETE FROM ".TABLE_PREFIX."mod_news_groups WHERE section_id = '$section_id'");
|
46
|
$database->query("DELETE FROM ".TABLE_PREFIX."mod_news_comments WHERE section_id = '$section_id'");
|
47
|
$database->query("DELETE FROM ".TABLE_PREFIX."mod_news_settings WHERE section_id = '$section_id'");
|
48
|
|
49
|
?>
|