<?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
{
$len=15;
myecho('From');
echo(' <input class="fld_" style="text-align:right;" name="'.$show_name.'_from" id="'.$show_name.'" type="text" title="'.$show_value.'" onkeydown="new AutoSuggestControl(this, \''.$variable_name.'\', new RemoteStateSuggestions());" value="'.$show_value.'" />');
echo '<br />';
myecho('To');
echo(' <input class="fld_" style="text-align:right;" name="'.$show_name.'_to" 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
{
$len=15;
echo('<input style="text-align:right;" class="fld_" name="'.$show_name.'" type="text" value="');
echo($show_value);
echo('" />');
}
elseif($show_mode==CFG_SHOW) //show value in html
{
if($show_value<0)
echo('<div style="text-align:right; color:#f00;" class="fld_">');
else
echo('<div style="text-align:right;" class="fld_">');
if($show_value!='')
echo(number_format($show_value,2,',',' '));
echo('</div> ');
}
elseif($show_mode==CFG_EDIT) //show value as input
{
$len=15;
if($show_value!='')
{
$show_value=number_format($show_value,2,',',' ');
$len=5+strlen($show_value);
if($len<15)
$len=15;
}
if($show_value<0)
echo('<input style="text-align:right; color:#f00;" class="fld_" name="'.$show_name.'" type="text" value="');
else
echo('<input style="text-align:right;" class="fld_" name="'.$show_name.'" type="text" value="');
if($show_value!='')
echo($show_value);
echo('" />');
}
elseif($show_mode==CFG_LOAD) //convert value to show format
{
if($show_value!='')
$show_value=number_format($show_value,2,',',' ');
}
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);
}
}
?>