1 |
1457
|
Luisehahne
|
<?php
|
2 |
|
|
/**
|
3 |
|
|
*
|
4 |
|
|
* @category modules
|
5 |
|
|
* @package news
|
6 |
|
|
* @author WebsiteBaker Project
|
7 |
|
|
* @copyright 2009-2011, Website Baker Org. e.V.
|
8 |
|
|
* @link http://www.websitebaker2.org/
|
9 |
|
|
* @license http://www.gnu.org/licenses/gpl.html
|
10 |
|
|
* @platform WebsiteBaker 2.8.x
|
11 |
|
|
* @requirements PHP 5.2.2 and higher
|
12 |
|
|
* @version $Id$
|
13 |
|
|
* @filesource $HeadURL$
|
14 |
|
|
* @lastmodified $Date$
|
15 |
|
|
*
|
16 |
|
|
*/
|
17 |
1587
|
darkviper
|
/* -------------------------------------------------------- */
|
18 |
|
|
// Must include code to stop this file being accessed directly
|
19 |
|
|
require_once( dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php');
|
20 |
|
|
if(!defined('WB_PATH')) { throw new IllegalFileException(); }
|
21 |
|
|
/* -------------------------------------------------------- */
|
22 |
1895
|
Luisehahne
|
$sDefaultSql = dirname(__FILE__).'/sql/mod_news.sql';
|
23 |
1587
|
darkviper
|
if (is_readable($sDefaultSql)) {
|
24 |
|
|
// create needet database tables and set default records
|
25 |
1895
|
Luisehahne
|
if ($database->SqlImport($sDefaultSql, '',false)) {
|
26 |
1587
|
darkviper
|
// Make news post access files dir
|
27 |
|
|
require_once(WB_PATH.'/framework/functions.php');
|
28 |
|
|
if(make_dir(WB_PATH.PAGES_DIRECTORY.'/posts')) {
|
29 |
|
|
// Add a index.php file to prevent directory spoofing
|
30 |
|
|
$sResponse = $_SERVER['SERVER_PROTOCOL'].' 301 Moved Permanently';
|
31 |
|
|
$sContent =
|
32 |
|
|
'<?php'."\n".
|
33 |
|
|
'// *** This file is generated by WebsiteBaker Ver.'.VERSION."\n".
|
34 |
|
|
'// *** Creation date: '.date('c')."\n".
|
35 |
|
|
'// *** Do not modify this file manually'."\n".
|
36 |
|
|
'// *** WB will rebuild this file from time to time!!'."\n".
|
37 |
|
|
'// *************************************************'."\n".
|
38 |
|
|
"\t".'header(\''.$sResponse.'\');'."\n".
|
39 |
|
|
"\t".'header(\'Location: ../index.php\');'."\n".
|
40 |
|
|
'// *************************************************'."\n";
|
41 |
|
|
$sFilename = WB_PATH.PAGES_DIRECTORY.'/posts/index.php';
|
42 |
|
|
file_put_contents($sFilename, $sContent);
|
43 |
|
|
change_mode($sFilename, 'file');
|
44 |
|
|
}
|
45 |
|
|
}
|
46 |
1457
|
Luisehahne
|
}
|
47 |
1587
|
darkviper
|
/* **** END INSTALL ********************************************************* */
|