Game Site
Set up your own game site using Satellite Gamesite System. Just choose domain name, simple hosting (PHP 4.3 or newer), and you're ready to create easy to use game site with more than 370 games. Satellite Gamesite System can be downloaded from Big Fish Games PNP (Content -> XML Data -> Satellite Gamesite System). Contact me if you have any questions. I can provide you with some tips how to customize SGS and even setup it for you.
Example of usage: 23map Games
Customizing Page Titles
1. Index page and top menu page titles. index.php modifications:
$feature_list['CAPTION'] = $copy['caption'];
[+] $sl->class['site_parse']->settag('TITLE', $copy['caption'].' at My Site');
$genrelist['CAPTION'] = str_replace("Games", "", $copy['caption']);
note: it's a line before, line to add ([+]), and line after
2. Game page title. gameinfo.php modifications:
$main .= $sl->class['site_parse']->render_template('main',$game,TRUE);
[+] $sl->class['site_parse']->settag('TITLE', $game['gamename'].' at My Site');
}
3. Browse list title. browse.php modifications:
$paginate = $sl->class['site_paginate']->nextprev('list-casual-games', $from, $view, $i, 'text', "sort=".$_REQUEST['sort']."&genre=".$_REQUEST['genre']."&order=".$_REQUEST['order']."&from=", true);
[+] $sl->class['site_parse']->settag('TITLE', ucwords($_REQUEST['genre']).' Games at My Site');
echo $sl->class['site_parse']->render_template('browse',array('GENRE'=>ucwords($_REQUEST['genre']),'SORTLIST'=>$sort_list,'PAGINATE'=>$paginate,'GAMES'=>$gamelist),TRUE);
