summary refs log tree commit diff stats
path: root/includes/functions.php
diff options
context:
space:
mode:
authorStarla Insigna <hatkirby@fourisland.com>2009-10-03 10:30:17 -0400
committerStarla Insigna <hatkirby@fourisland.com>2009-10-03 10:30:17 -0400
commitdc0fb9445e8a3ede8bc33d6779fadd89b7ea6893 (patch)
tree511b0f752889172163f3801cdbe311f0efc55540 /includes/functions.php
parent0e4089184a44719fbd1284acb047ab7547674412 (diff)
downloadfourisland-dc0fb9445e8a3ede8bc33d6779fadd89b7ea6893.tar.gz
fourisland-dc0fb9445e8a3ede8bc33d6779fadd89b7ea6893.tar.bz2
fourisland-dc0fb9445e8a3ede8bc33d6779fadd89b7ea6893.zip
Created Theme Switcher
Also rewrote the way layouts work. Now, each layout requires a "layout.tpl" file (which contains the header and footer for the layout) and a "style.php"
file (which contains and can include other files that contain the CSS for the layout). Each layout has it's own folder in theme/layouts and you can switch
between them using a combo box in the Hatbar.

Layouts 6.2 and 4.5 have been modified to work with new Layout 7 features such as AJAX, and they should be relatively free of bugs. Layout 3 has not yet
been transferred because since it is pre-The New Four Island, it will be very difficult to do so.

This changeset requires manual external code changes:

* The line below must be added above the functions.php include in The Fourm's funnctions.php
	require('/svr/www/hatkirby/fourisland/main/includes/session.php');
* The block of Four Island code in The Fourm's page_header() function should be replaced with:
	global $fi_pagetitle;
	$fi_pagetitle = $page_title;

	ob_start();
* The block of Four Island code in The Fourm's page_footer() function should be replaced with:
	global $fi_pagetitle;

	$content = ob_get_contents();
	ob_end_clean();

	$noRightbar = 1;
	$onFourm = 1;
	$pageCategory = 'fourm';

	if ($fi_pagetitle == 'Index page')
	{
		$title = 'The Fourm';
	} else if (strpos($fi_pagetitle, 'View topic') !== FALSE)
	{
		$title = str_replace('View topic - ', 'Topic: ', $fi_pagetitle) . ' - The Fourm';
	} else if (strpos($fi_pagetitle, 'View forum') !== FALSE)
	{
		$title = str_replace('View forum - ', 'Fourm: ', $fi_pagetitle) . ' - The Fourm';
	} else if (strpos($fi_pagetitle, 'Viewing profile') !== FALSE)
	{
		$title = str_replace('Viewing profile - ', 'Member: ', $fi_pagetitle) . ' - The Fourm';
	} else {
		$title = $fi_pagetitle . ' - The Fourm';
	}

	if ($_GET['view'] != 'print')
	{
		include('/svr/www/hatkirby/fourisland/main/includes/layout.php');
	} else {
		echo $content;
	}

Closes #117
Diffstat (limited to 'includes/functions.php')
-rwxr-xr-xincludes/functions.php60
1 files changed, 60 insertions, 0 deletions
diff --git a/includes/functions.php b/includes/functions.php index 6b5d8e9..bc839df 100755 --- a/includes/functions.php +++ b/includes/functions.php
@@ -376,4 +376,64 @@ function getTagColor($i)
376 } 376 }
377} 377}
378 378
379function getLayout()
380{
381 if (!isset($_COOKIE['layout']))
382 {
383 return '7';
384 } else {
385 return $_COOKIE['layout'];
386 }
387}
388
389function getRewriteURL()
390{
391 if (!isset($_GET['area']))
392 {
393 return '/';
394 } else {
395 if ($_GET['area'] == 'blog')
396 {
397 if (isset($_GET['author']))
398 {
399 return '/blog/author/' . $_GET['author'] . '.php';
400 } else if (isset($_GET['tag']))
401 {
402 return '/blog/tag/' . $_GET['tag'] . '.php';
403 } else if (isset($_GET['post']))
404 {
405 return '/blog/' . $_GET['post'] . '/';
406 } else {
407 return '/blog/';
408 }
409 } else if ($_GET['area'] == 'poll')
410 {
411 if (isset($_GET['id']))
412 {
413 return '/poll/' . $_GET['id'] . '.php';
414 } else {
415 return '/poll/';
416 }
417 } else if ($_GET['area'] == 'quotes')
418 {
419 if (isset($_GET['act']))
420 {
421 return '/quotes/' . $_GET['act'] . '.php';
422 } else {
423 return '/quotes/';
424 }
425 } else if ($_GET['area'] == 'error')
426 {
427 if (isset($_GET['id']))
428 {
429 return '/error/' . $_GET['id'] . '.php';
430 } else {
431 return '/error/';
432 }
433 } else {
434 return '/' . $_GET['area'] . '/';
435 }
436 }
437}
438
379?> 439?>