| 1 | <?php
 | 
  
    | 2 | /**
 | 
  
    | 3 |  *
 | 
  
    | 4 |  * @category        admin
 | 
  
    | 5 |  * @package         media
 | 
  
    | 6 |  * @author          Ryan Djurovich (2004-2009), WebsiteBaker Project
 | 
  
    | 7 |  * @copyright       2009-2012, WebsiteBaker 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: parameters.php 1824 2012-11-20 17:41:22Z Luisehahne $
 | 
  
    | 13 |  * @filesource		$HeadURL: svn://isteam.dynxs.de/wb-archiv/branches/2.8.x/wb/admin/media/parameters.php $
 | 
  
    | 14 |  * @lastmodified    $Date: 2012-11-20 18:41:22 +0100 (Tue, 20 Nov 2012) $
 | 
  
    | 15 |  *
 | 
  
    | 16 |  */
 | 
  
    | 17 | 
 | 
  
    | 18 | /* -------------------------------------------------------- */
 | 
  
    | 19 | // Must include code to stop this file being accessed directly
 | 
  
    | 20 | if(!defined('WB_URL')) {
 | 
  
    | 21 | 	require_once(dirname(dirname(dirname(__FILE__))).'/framework/globalExceptionHandler.php');
 | 
  
    | 22 | 	throw new IllegalFileException();
 | 
  
    | 23 | }
 | 
  
    | 24 | /* -------------------------------------------------------- */
 | 
  
    | 25 | 
 | 
  
    | 26 | function __unserialize($sObject) {  // found in php manual :-)
 | 
  
    | 27 |     if($sObject=='') { return array( 'global' => array( 'admin_only' => false,'show_thumbs' => false ) );}
 | 
  
    | 28 | 	$__ret = preg_replace('!s:(\d+):"(.*?)";!e', "'s:'.strlen('$2').':\"$2\";'", $sObject );
 | 
  
    | 29 | 	return unserialize($__ret);
 | 
  
    | 30 | }
 | 
  
    | 31 | 
 | 
  
    | 32 | $pathsettings = array( 'global' => array( 'admin_only' => false,'show_thumbs' => false ) );
 | 
  
    | 33 | if(DEFAULT_THEME != '') {
 | 
  
    | 34 | 	$query = $database->query ( "SELECT * FROM ".TABLE_PREFIX."settings where `name`='mediasettings'" );
 | 
  
    | 35 | 	if ($query && $query->numRows() > 0) {
 | 
  
    | 36 | 		$settings = $query->fetchRow();
 | 
  
    | 37 | 		$pathsettings = __unserialize($settings['value']);
 | 
  
    | 38 | 	} else {
 | 
  
    | 39 | 		$database->query ( "INSERT INTO ".TABLE_PREFIX."settings (`name`,`value`) VALUES ('mediasettings','')" );
 | 
  
    | 40 | 	}
 | 
  
    | 41 | }
 |