<?php
/*
OpenDataBag - Data Web Interface
Copyright (C) 2004 Nawara
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
if($show_mode==CFG_SEARCH) //show search input
{
echo('<input class="fld_" name="'.$show_name.'" id="'.$show_name.'" type="text" title="'.$show_value.'" onkeydown="new AutoSuggestControl(this, \''.$variable_name.'\', new RemoteStateSuggestions());" value="'.$show_value.'" />');
}
elseif($show_mode==CFG_NEW) //show value as input for new value
{
echo('<input class="fld_" name="'.$show_name.'" type="text" value="');
echo($show_value);
echo('">');
}
elseif($show_mode==CFG_SHOW) //show value in html
{
echo('<div style="text-align:center;" class="fld_" title="'.number_format($show_value,0,',',' ').'">');
if($show_value!='')
{
echo '<img src="images/vote_lcap.gif" /><img src="images/voting_bar.gif" height="12" width="'.(15*log($show_value/5)).'" /><img src="images/vote_rcap.gif" />';
//echo '<br />'.number_format($show_value,0,',',' ');
//<span style="background-image:url(images/voting_bar1.gif); background-repeat:repeat-x; background-position: left top;">'.number_format($show_value,0,',',' ').'</span>
}
echo('</div> ');
}
elseif($show_mode==CFG_EDIT) //show value as input
{
echo('<input style="text-align:right;" class="fld_" name="'.$show_name.'" type="text" value="');
if($show_value!='')
echo(number_format($show_value,0,',',' '));
echo('"></input>');
echo '<img src="images/vote_lcap.gif" /><img src="images/voting_bar.gif" height="12" width="'.(15*log($show_value/5)).'" /><img src="images/vote_rcap.gif" />';
}
elseif($show_mode==CFG_LOAD) //convert value to show format
{
if($show_value!='')
$show_value=number_format($show_value,0,',',' ');
}
elseif($show_mode==CFG_SAVE) //convert value to plain data
{
if($show_value!='')
{
$show_value=str_replace(',','.',$show_value);
$show_value=str_replace(' ','',$show_value);
}
}
?>