Project

General

Profile

1 601 doc
<?php
2 1377 FrankH
/**
3
 *
4
 * @category        modules
5
 * @package         JsAdmin
6
 * @author          WebsiteBaker Project, modified by Swen Uth for Website Baker 2.7
7 1895 Luisehahne
 * @copyright       2009-2013, WebsiteBaker Org. e.V.
8
 * @link            http://www.websitebaker2.org/
9 1377 FrankH
 * @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 1895 Luisehahne
 * @filesource      $HeadURL$
14 1477 Luisehahne
 * @lastmodified    $Date$
15 1377 FrankH
 *
16 601 doc
*/
17
18 1537 Luisehahne
/* -------------------------------------------------------- */
19 1895 Luisehahne
// Must include code to stop this file being accessed directly
20
if(!defined('WB_PATH')) {
21
	require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php');
22
	throw new IllegalFileException();
23
} else {
24
	$sError = array();
25
	// Create table
26
	if(!$database->SqlImport(dirname(__FILE__).'/sql/mod_jsadmin.sql','',false)){
27
		$sError[] = $database->get_error();
28 1537 Luisehahne
	}
29 1895 Luisehahne
// Create table
30
	if(!$database->SqlImport(dirname(__FILE__).'/sql/data_jsadmin.sql','',false)){
31
		$sError[] = $database->get_error();
32
	}
33 1537 Luisehahne
}