HEX
Server: Microsoft-IIS/10.0
System: Windows NT ITPWINWEBSVR22 10.0 build 20348 (Windows Server 2022) AMD64
User: www.conferencesearch.co.uk (0)
PHP: 8.3.30
Disabled: NONE
Upload Files
File: D:/web/itpartnership.net (cms)/admin/header.php
<?php

$orig_memory = (function_exists('memory_get_usage')?memory_get_usage():0);
$starttime = microtime();
if (!(isset($USE_OUTPUT_BUFFERING) && $USE_OUTPUT_BUFFERING == false))
{
	@ob_start();
}
include_once("../lib/classes/class.admintheme.inc.php");

$config = $gCms->GetConfig();

if (isset($USE_THEME) && $USE_THEME == false)
{
  //echo '<!-- admin theme disabled -->';
}
else
{
	$themeName=get_preference(get_userid(), 'admintheme', 'default');
	$themeObjectName = $themeName."Theme";
	$userid = get_userid();
	
	debug_buffer('before theme load');

	if (file_exists(dirname(__FILE__)."/themes/${themeName}/${themeObjectName}.php"))
	{
		include(dirname(__FILE__)."/themes/${themeName}/${themeObjectName}.php");
		$themeObject = new $themeObjectName($gCms, $userid, $themeName);
	}
	else
	{
		$themeObject = new AdminTheme($gCms, $userid, $themeName);
	}
	
	debug_buffer('after theme load');

	$gCms->variables['admintheme']=$themeObject;
	if (isset($gCms->config['admin_encoding']) && $gCms->config['admin_encoding'] != '')
	{
		$themeObject->SendHeaders(isset($charsetsent), $gCms->config['admin_encoding']);
	}
	else
	{
		$themeObject->SendHeaders(isset($charsetsent), get_encoding('', false));
	}
	
	debug_buffer('before populate admin navigation');
	
	$themeObject->PopulateAdminNavigation(isset($CMS_ADMIN_SUBTITLE)?$CMS_ADMIN_SUBTITLE:'');
	
	debug_buffer('after populate admin navigation');
	
	debug_buffer('before theme-y stuff');

	$themeObject->DisplayDocType();
	$themeObject->DisplayHTMLStartTag();
	$themeObject->DisplayHTMLHeader(false, isset($headtext)?$headtext:'');
	$themeObject->DisplayBodyTag();
	$themeObject->DoTopMenu();
	$themeObject->DisplayMainDivStart();
	
	debug_buffer('after theme-y stuff');

	// Display notification stuff from modules
	// should be controlled by preferences or something
	$ignoredmodules = explode(',',get_preference($userid,'ignoredmodules'));
	if( get_site_preference('enablenotifications',1) &&
	    get_preference($userid,'enablenotifications',1) )
	{
		foreach( $gCms->modules as $modulename => $ext )
		{
			if( in_array($modulename,$ignoredmodules) ) continue;
			$mod =& $gCms->modules[$modulename]['object'];
			if( !is_object($mod) ) continue;

			$data = $mod->GetNotificationOutput(3); // todo, priority user preference
			if( empty($data) ) continue;
			if( is_object($data) )
			{
				$themeObject->AddNotification($data->priority,
					$mod->GetName(),
					$data->html);
			}
			else
			{
				// we have more than one item
				// for the dashboard from this module
				if( is_array($data) )
				{
					foreach( $data as $item )
					{
						$themeObject->AddNotification($item->priority,
							$mod->GetName(),
							$item->html);
					}
				}
			}
		}
		
		debug_buffer('before notifications');

		// if the install directory still exists
		// add a priority 1 dashboard item
		if( file_exists(dirname(dirname(__FILE__)).'/install') )
		{
			$themeObject->AddNotification(1,'Core', lang('installdirwarning'));
		}

		// Display a warning if safe mode is enabled
		if( ini_get_boolean('safe_mode') && get_site_preference('disablesafemodewarning',0) == 0 )
		{
			$themeObject->AddNotification(1,'Core',lang('warning_safe_mode'));
		}

		// Display a warning sitedownwarning
		$sitedown_message = lang('sitedownwarning', TMP_CACHE_LOCATION . '/SITEDOWN');
		$sitedown_file = TMP_CACHE_LOCATION . '/SITEDOWN';
		if (file_exists($sitedown_file))
		{
			$themeObject->AddNotification(1,'Core',$sitedown_message);
		}
		
		debug_buffer('after notifications');

		// Display a warning if CMSMS needs upgrading
		$db =& $gCms->GetDb();
		$current_version = $CMS_SCHEMA_VERSION;
		$query = "SELECT version from ".cms_db_prefix()."version";
		$row = $db->GetRow($query);
		if ($row)
		{
			$current_version = $row["version"];
		}

		$warning_upgrade = 
			lang('warning_upgrade') . "<br />" . lang('warning_upgrade_info1',$current_version,  
			$CMS_SCHEMA_VERSION) . "<br /> " . lang('warning_upgrade_info2',
			'<a href="'.$config['root_url'].'/install/upgrade.php">'.lang('start_upgrade_process').'</a>')
			;


		if ($current_version < $CMS_SCHEMA_VERSION)
		{
			$themeObject->AddNotification(1,'Core', $warning_upgrade);
		}

		// Display an upgrade notification 
		// but only do a check once per day
		$timelastchecked = get_site_preference('lastcmsversioncheck',0);
		$tmpl = '<div class="pageerrorcontainer"><div class="pageoverflow"><p class="pageerror">%s</p></div></div>';
		$cms_is_uptodate = 1;
		$do_getpref = 0;
		$url = strtolower(trim(get_site_preference('urlcheckversion','')));
		//if( $url != 'none' && !empty($url) &&
		//    ($timelastchecked < time() || isset($_GET['forceversioncheck'])) )
		if( $url != 'none' && ($timelastchecked < time() || isset($_GET['forceversioncheck'])) )
		{
			// check forced
			// get the url
			$do_getpref = 1;
			$goodtest = false;
			if( empty($url) )
			{
				$url = CMS_DEFAULT_VERSIONCHECK_URL;
			}
			if( $url == 'none')
			{
				$cms_is_uptodate = 1;
				$do_getpref = 0;
			}
			else
			{
				include_once(cms_join_path($config['root_path'], 'lib', 'test.functions.php'));
				$remote_test = testRemoteFile(0, lang('test_remote_url'), $url, lang('test_remote_url_failed'), $config['debug']);
				if ($remote_test->continueon)
				{
					// we have a 'theoretically' valid url
					$txt = @file_get_contents($url);
					if( $txt !== FALSE )
					{
						// the url worked
						// do a version check
						$goodtest = true;
						$parts = explode(':',$txt);
						if( is_array( $parts ) && 
							strtolower($parts[0]) == 'cmsmadesimple' )
						{
							$ver = $parts[1];
							$res = version_compare( CMS_VERSION, $ver );
							if( $res < 0 )
							{
								// new version available
								$cms_is_uptodate = 0;
								set_site_preference('cms_is_uptodate',0);
							}
							else
							{
								// the version is valid.
								set_site_preference('cms_is_uptodate',1);
							}
						} // if
					} // if
				}
			} // if

			// update the last check time
			// to midnight of the current day
			// if( $goodtest )
			if( true )
			{
				set_site_preference('lastcmsversioncheck',
					strtotime("23:59:55"));
			}
		}

		if( $cms_is_uptodate == 0 || 
			($do_getpref == 1 && get_site_preference('cms_is_uptodate',1) == 0) )
		{
			// it wasn't up-to-date last time either
			$themeObject->AddNotification(1,'Core',lang('new_version_available'));
		}


		// Display a warning about mail settings.
		if( isset($gCms->modules['CMSMailer']) && 
			isset($gCms->modules['CMSMailer']['object']) &&
			isset($gCms->modules['CMSMailer']['installed']) &&
			get_site_preference('mail_is_set',0) == 0 )
		{
			$urlCMSMailer = 'moduleinterface.php?'.CMS_SECURE_PARAM_NAME.'='.$_SESSION[CMS_USER_KEY].'&amp;module=CMSMailer';
			$themeObject->AddNotification(1,'Core',lang('warning_mail_settings', $urlCMSMailer));
		}
	}

	// and display the dashboard.
	$themeObject->DisplayNotifications(3); // todo, a preference.

	// we've removed the Recent Pages stuff, but other things could go in this box
	// so I'll leave some of the logic there. We can remove it later if it makes sense. SjG
	$marks = get_preference($userid, 'bookmarks');
	if ($marks)
	{
		$themeObject->StartRighthandColumn();
		if ($marks)
		{
			$themeObject->DoBookmarks();
		}

		$themeObject->EndRighthandColumn();
	}
}
?>