1 |
1157
|
Luisehahne
|
<?php
|
2 |
1280
|
Luisehahne
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category modules
|
5 |
|
|
* @package news
|
6 |
|
|
* @author WebsiteBaker Project
|
7 |
|
|
* @copyright 2004-2009, Ryan Djurovich
|
8 |
1349
|
Luisehahne
|
* @copyright 2009-2011, Website Baker Org. e.V.
|
9 |
1280
|
Luisehahne
|
* @link http://www.websitebaker2.org/
|
10 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
11 |
|
|
* @platform WebsiteBaker 2.8.x
|
12 |
1374
|
Luisehahne
|
* @requirements PHP 5.2.2 and higher
|
13 |
1280
|
Luisehahne
|
* @version $Id$
|
14 |
|
|
* @filesource $HeadURL$
|
15 |
|
|
* @lastmodified $Date$
|
16 |
|
|
*
|
17 |
|
|
*/
|
18 |
1157
|
Luisehahne
|
|
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 |
562
|
Ruebenwurz
|
?>
|