| 1 | 536 | doc | <?php
 | 
      
        | 2 | 1398 | FrankH | /**
 | 
      
        | 3 |  |  |  *
 | 
      
        | 4 |  |  |  * @category        admin
 | 
      
        | 5 |  |  |  * @package         admintools
 | 
      
        | 6 |  |  |  * @author          WebsiteBaker Project
 | 
      
        | 7 |  |  |  * @copyright       2004-2009, Ryan Djurovich
 | 
      
        | 8 |  |  |  * @copyright       2009-2011, 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 5.2.2 and higher
 | 
      
        | 13 |  |  |  * @version         $Id$
 | 
      
        | 14 | 1457 | Luisehahne |  * @filesource		$HeadURL$
 | 
      
        | 15 |  |  |  * @lastmodified    $Date$
 | 
      
        | 16 | 1398 | FrankH |  *
 | 
      
        | 17 |  |  |  */
 | 
      
        | 18 | 536 | doc | 
 | 
      
        | 19 |  |  | require('../../config.php');
 | 
      
        | 20 |  |  | require_once(WB_PATH.'/framework/class.admin.php');
 | 
      
        | 21 |  |  | require_once(WB_PATH.'/framework/functions.php');
 | 
      
        | 22 |  |  | 
 | 
      
        | 23 |  |  | if(!isset($_GET['tool'])) {
 | 
      
        | 24 |  |  | 	header("Location: index.php");
 | 
      
        | 25 |  |  | 	exit(0);
 | 
      
        | 26 | 1457 | Luisehahne | } else {
 | 
      
        | 27 |  |  | 	$array = array();
 | 
      
        | 28 |  |  | 	preg_match("/[a-z,_,a-z]+/i",$_GET['tool'],$array);
 | 
      
        | 29 |  |  | 	$tool = $array[0];
 | 
      
        | 30 | 536 | doc | }
 | 
      
        | 31 |  |  | 
 | 
      
        | 32 | 1460 | Luisehahne | $ModulesList = array();
 | 
      
        | 33 |  |  | $admin_header =  true;
 | 
      
        | 34 | 1457 | Luisehahne | if(isset($_POST['save_settings'])) {
 | 
      
        | 35 |  |  | 	$ModulesUsingFTAN = ADMIN_PATH.'/admintools/modules.inc';
 | 
      
        | 36 |  |  | 	if(file_exists($ModulesUsingFTAN)){
 | 
      
        | 37 | 1460 | Luisehahne | 		if(($ModulesList = file($ModulesUsingFTAN, FILE_IGNORE_NEW_LINES|FILE_SKIP_EMPTY_LINES)) !== false)
 | 
      
        | 38 | 1457 | Luisehahne | 		{
 | 
      
        | 39 |  |  | 			// remove remark-lines
 | 
      
        | 40 | 1460 | Luisehahne | 			$ModulesList = preg_grep('/^\s*?[^#;]/', $ModulesList);
 | 
      
        | 41 | 1457 | Luisehahne | 		}
 | 
      
        | 42 |  |  | 	}
 | 
      
        | 43 |  |  | }
 | 
      
        | 44 |  |  | 
 | 
      
        | 45 | 1460 | Luisehahne | $admin_header = (!in_array($tool, $ModulesList));
 | 
      
        | 46 |  |  | $admin = new admin('admintools', 'admintools', $admin_header );
 | 
      
        | 47 |  |  | unset($ModulesList);
 | 
      
        | 48 | 1457 | Luisehahne | 
 | 
      
        | 49 | 536 | doc | // Check if tool is installed
 | 
      
        | 50 | 1457 | Luisehahne | $result = $database->query("SELECT * FROM ".TABLE_PREFIX."addons WHERE type = 'module' AND function = 'tool' AND directory = '".preg_replace("/\W/", "", $tool)."'");
 | 
      
        | 51 | 536 | doc | if($result->numRows() == 0) {
 | 
      
        | 52 |  |  | 	header("Location: index.php");
 | 
      
        | 53 |  |  | 	exit(0);
 | 
      
        | 54 |  |  | }
 | 
      
        | 55 | 1460 | Luisehahne | $tools = $result->fetchRow();
 | 
      
        | 56 | 1457 | Luisehahne | if(!isset($_POST['save_settings'])) {
 | 
      
        | 57 | 536 | doc | 
 | 
      
        | 58 |  |  | ?>
 | 
      
        | 59 | 944 | Ruebenwurz | <h4>
 | 
      
        | 60 | 536 | doc | 	<a href="<?php echo ADMIN_URL; ?>/admintools/index.php"><?php echo $HEADING['ADMINISTRATION_TOOLS']; ?></a>
 | 
      
        | 61 | 1035 | Ruebenwurz | 	»
 | 
      
        | 62 | 1460 | Luisehahne | 	<?php echo $tools['name']; ?>
 | 
      
        | 63 | 536 | doc | </h4>
 | 
      
        | 64 |  |  | <?php
 | 
      
        | 65 | 1457 | Luisehahne | }
 | 
      
        | 66 | 1460 | Luisehahne | require(WB_PATH.'/modules/'.$tools['directory'].'/tool.php');
 | 
      
        | 67 | 536 | doc | 
 | 
      
        | 68 |  |  | $admin->print_footer();
 |