<?php
/**
* PHP versions 4 and 5
*
* LICENSE: This source file is subject to version 3.0 of the PHP license
* that is available through the world-wide-web at the following URI:
* http://www.php.net/license. If you did not receive a copy of
* the PHP License and are unable to obtain it through the web, please
* send a note to hide@address.com so we can mail you a copy immediately.
*
* @package QuickTalk Guestbook
* @author Philippe Vandenberghe <hide@address.com>
* @copyright 2009-2012 The PHP Group
* @version 2.5 build:20100731
*/
session_start();
require_once('bin/qtg_init.php');
if ( !isset($_SESSION['qtgAuth']) ) HtmlRedirect('qtg_login.php'); // CHECK LOGIN
if ( $_SESSION['qtgAuth']!='yes' ) HtmlRedirect('qtg_login.php');
include(GetLang().'qtg_adm.php');
include(GetLang().'qtg_map.php');
include(GetLang().'qtg_map_adm.php');
// INITIALISE
if ( !isset($qtg_gkey) ) $qtg_gkey='';
if ( !isset($qtg_gcenter) ) $qtg_gcenter='50.8468142558,4.35238838196';
if ( !isset($qtg_gzoom) ) $qtg_gzoom='5';
if ( !isset($qtg_gbuttons) ) $qtg_gbuttons='P11100';
if ( !isset($qtg_gfind) ) $qtg_gfind='Brussels, Belgium';
if ( !isset($qtg_gsymbol) ) $qtg_gsymbol=false;
$qtg_skin='admin'; //override the skin in this page
$pg_name=$L['Map'];
$pg_url='qtg_adm_map.php';
// --------
// SUBMITTED
// --------
if ( isset($_POST['ok']) )
{
// CHECK values
$qtg_gkey = trim($_POST['qtg_gkey']); if ( strlen($qtg_gkey)<8 ) $qtg_gkey='';
if ( isset($_POST['qtg_gcenter']) ) { $qtg_gcenter = trim($_POST['qtg_gcenter']); } else { $qtg_gcenter = '50.8468142558,4.35238838196'; }
if ( isset($_POST['qtg_gzoom']) ) { $qtg_gzoom = trim($_POST['qtg_gzoom']); } else { $qtg_gzoom = '5'; }
if ( !isset($_POST['maptype']) ) $_POST['maptype']='P';
if ( !isset($_POST['nav']) ) $_POST['nav']='1';
if ( !isset($_POST['map']) ) $_POST['map']='1';
if ( !isset($_POST['scale']) ) $_POST['scale']='1';
if ( !isset($_POST['qtg_gsymbol']) ) $_POST['qtg_gsymbol']=false;
$qtg_gbuttons = substr($_POST['maptype'],0,1).(isset($_POST['nav']) ? '1' : '0').(isset($_POST['map']) ? '1' : '0').(isset($_POST['scale']) ? '1' : '0').(isset($_POST['overview']) ? '1' : '0').(isset($_POST['mousewheel']) ? '1' : '0');
if ( isset($_POST['qtg_gfind']) ) { $qtg_gfind = trim($_POST['qtg_gfind']); } else { $qtg_gfind='Brussels, Belgium'; }
if ( empty($_POST['qtg_gsymbol']) ) { $qtg_gsymbol=false; } else { $qtg_gsymbol=$_POST['qtg_gsymbol']; }
// SAVE values
if ( empty($error) )
{
$strTxt = '<?php
$qtg_gkey = "'.$qtg_gkey.'";
$qtg_gcenter = "'.$qtg_gcenter.'";
$qtg_gzoom = "'.$qtg_gzoom.'";
$qtg_gbuttons = "'.$qtg_gbuttons.'";
$qtg_gfind = "'.$qtg_gfind.'";
$qtg_gsymbol = '.($qtg_gsymbol ? '"'.$qtg_gsymbol.'"' : 'false').';
$qtg_gshadow = '.(file_exists('map/'.$qtg_gsymbol.'_shadow.png') ? 'true' : 'false').';
$qtg_gprinticon = '.(file_exists('map/'.$qtg_gsymbol.'.gif') ? 'true' : 'false').';
$qtg_gprintshadow = '.(file_exists('map/'.$qtg_gsymbol.'_shadow.gif') ? 'true' : 'false').';
?>';
if (!is_writable('bin/config_map.php')) $error='Impossible to write into the file [bin/config_map.php].';
if ( empty($error) )
{
if (!$handle = fopen('bin/config_map.php', 'w')) $error='Impossible to open the file [bin/config_map.php].';
}
if ( empty($error) )
{
if (fwrite($handle, $strTxt) === FALSE)
{
$error = 'Impossible to write into the file [bin/config_map.php].';
}
else
{
$strInfo = $L['Save_successfull'];
fclose($handle);
}
}
}
}
// --------
// HTML START
// --------
if ( !empty($qtg_gkey) )
{
include('qtg_map_lib.php');
$strBodyAddOnunload='GUnload()';
}
include('qtg_p_header.php');
include('qtg_adm_menu.php');
if ( file_exists(GetLang().'qtg_map_adm.php.txt') )
{
echo '<p class="admin_help">';
include(GetLang().'qtg_map_adm.php.txt');
echo '</p>';
}
echo '
<form method="post" action="',Href('qtg_adm_map.php'),'">
<h2> ',$L['map_adm']['Mapping_settings'],'</h2>
<table width="100%" border="0" cellspacing="0" class="admin">
<tr>
<td class="admin_top" style="width:150px;"><span class="texthead"><label for="qtg_gkey">Google API key</label></span></td>
<td class="admin"><input id="qtg_gkey" name="qtg_gkey" size="90" maxlength="100" value="',$qtg_gkey,'"></td>
</tr>
';
if ( !empty($qtg_gkey) )
{
// Read png in directory
$intHandle = opendir('map');
$arrFiles = array();
while(false!==($strFile=readdir($intHandle)))
{
if ( $strFile!='.' && $strFile!='..' ) {
if ( substr($strFile,-4,4)=='.png' ) {
if ( !strstr($strFile,'shadow') ) {
$arrFiles[substr($strFile,0,-4)]=ucfirst(substr(str_replace('_',' ',$strFile),0,-4));
}}}
}
closedir($intHandle);
asort($arrFiles);
echo '<tr>
<td class="admin_top">',$L['map_adm']['API_ctrl'],'</td>
<td class="admin">
<input type="checkbox" id="nav" name="nav"'.(substr($qtg_gbuttons,1,1)=='1' ? QCHE : '').' style="vertical-align: middle"/><label for="nav">',$L['map_adm']['Ctrl_navigation'],'</label>
<input type="checkbox" id="map" name="map"'.(substr($qtg_gbuttons,2,1)=='1' ? QCHE : '').' style="vertical-align: middle"/><label for="map">',$L['map_adm']['Ctrl_background'],'</label>
<input type="checkbox" id="scale" name="scale"'.(substr($qtg_gbuttons,3,1)=='1' ? QCHE : '').' style="vertical-align: middle"/><label for="scale">',$L['map_adm']['Ctrl_scale'],'</label>
<input type="checkbox" id="overview" name="overview"'.(substr($qtg_gbuttons,4,1)=='1' ? QCHE : '').' style="vertical-align: middle"/><label for="overview">',$L['map_adm']['Ctrl_overview'],'</label>
<input type="checkbox" id="mousewheel" name="mousewheel"'.(substr($qtg_gbuttons,5,1)=='1' ? QCHE : '').' style="vertical-align: middle"/><label for="mousewheel">',$L['map_adm']['Ctrl_mousewheel'],'</label>
</td>
</tr>
<tr>
<td class="admin_top"><label for="qtg_gsymbol">',$L['map_adm']['Symbol'],'</label></td>
<td class="admin">
<select id="qtg_gsymbol" name="qtg_gsymbol" size="1">
<option value="0">',$L['map_adm']['Default'],'</option>
<option value="" disabled="disabled">-----------</option>
',QTasTag($arrFiles,$qtg_gsymbol),'
</select>
</td>
</tr>
</table>
';
echo '
<h2>',$L['map_adm']['Mapping_config'],'</h2>
<table width="100%" border="0" cellspacing="0" class="admin">
<tr>
<tr>
<td class="admin_top" style="width:150px;"><label for="qtg_gcenter">',$L['map_adm']['Center'],'</label></td>
<td class="admin" style="width:250px;"><input type="text" id="qtg_gcenter" name="qtg_gcenter" size="28" maxlength="100" value="',$qtg_gcenter,'"/><span class="small"> ',$L['map_adm']['Latlng'],'</span></td>
<td class="admin_help">',$L['map_adm']['H_Center'],'</td>
</tr>
';
echo '<tr>
<td class="admin_top"><label for="qtg_gzoom">',$L['map_adm']['Zoom'],'</label></td>
<td class="admin">
<input type="text" id="qtg_gzoom" name="qtg_gzoom" size="2" maxlength="2" value="',$qtg_gzoom,'"/></td>
<td class="admin_help">',$L['map_adm']['H_Zoom'],'</td>
</tr>
';
echo '<tr>
<td class="admin_top">',$L['map_adm']['Background'],'</td>
<td class="admin"><select id="maptype" name="maptype" size="1">',QTasTag($L['map_adm']['Back'],substr($qtg_gbuttons,0,1)),'</select></td>
<td class="admin_help">',$L['map_adm']['H_Background'],'</td>
</tr>
';
echo '<tr>
<td class="admin_top"><label for="qtg_gfind">',$L['map_adm']['Address_sample'],'</label></td>
<td class="admin">
<input type="text" id="qtg_gfind" name="qtg_gfind" size="20" maxlength="100" value="',$qtg_gfind,'"/></td>
<td class="admin_help">',$L['map_adm']['H_Address_sample'],'</td>
</tr>
';
}
echo '</table>
<p style="text-align:center"><input type="submit" name="ok" value="',$L['Save'],'"/></p>
</form>
';
if ( !empty($qtg_gkey) )
{
echo '
<table width="100%" class="hidden" cellspacing="0">
<tr style="vertical-align:top">
<td class="hidden">
<h2>',$L['map_adm']['Preview'],'</h2>
<div class="gmap" style="width:500px;">
<p class="small" style="margin:2px 0 4px 2px;text-align:right">',$L['map']['canmove'],' | <a class="small" href="javascript:void(0)" onclick="undoChanges(); return false;"/>',$L['map']['undo'],'</a></p>
<div id="map_canvas" style="width:100%; height:350px;"></div>
<p class="small" style="margin:4px 0 2px 2px;text-align:right">',$L['map']['addrlatlng'],' <input type="text" size="24" id="find" name="find" class="small" value="',$qtg_gfind,'" onkeyup="handle_keypress(event,\'findit\')" title="',$L['map']['H_addrlatlng'],'"/> <input type="submit" id="findit" class="small" onclick="showLocation(document.getElementById(\'find\').value); return false;" value="',$L['Search'],'"/></p>
</div>
</td>
<td class="hidden"> </td>
<td class="hidden" style="width:150px">
<h2>',$L['map_adm']['Other_symbols'],'</h2>
<table class="hidden" cellspacing="0">
';
foreach ($arrFiles as $strFile=>$strName)
{
echo '<tr><td class="admin" style="width:30px; text-align:center"><img src="map/',$strFile,'.png"/></td><td class="admin"><span class="small">',$strName,'</span></td></tr>';
}
echo '
</table>
</td>
</tr>
</table>
';
}
else
{
echo '<p class="disabled">',$L['map_adm']['E_disabled'],'</p>';
}
// --------
// HTML END
// --------
if ( !empty($qtg_gkey) )
{
$y=QTgety($qtg_gcenter);
$x=QTgetx($qtg_gcenter);
$oMapPoint = new cMapPoint($y,$x,$L['map_adm']['Default_center'],'',false);
$arrExtData = array($oMapPoint);
$strFooterAddScript = QTgmapscript($qtg_gkey).'
<script type="text/javascript">
<!--
'.QTgmappoints(false,$y,$x,'drag',$arrExtData).'
mapload();
-->
</script>
';
}
include('qtg_p_footer.php');
?>