<?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 id="'.$show_name.'yes" name="'.$show_name.'" title="'.$show_value.'" type="checkbox" value="1" />');
}
elseif($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
{
if($show_value!='0' and $show_value!='')
{
// YES
echo '<div class="fld_">';
echo('<input name="'.$show_name.'check" type="checkbox" value="1" checked="checked" />');
echo('<input name="'.$show_name.'" type="hidden" value="1" />');
echo '</div>';
}
else
{
// NO
echo '<div class="fld_">';
echo('<input name="'.$show_name.'check" type="checkbox" value="1" />');
echo('<input name="'.$show_name.'" type="hidden" value="1" />');
echo '</div>';
}
//echo('<input 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' and $show_value!='')
myecho('Yes');
//else
// myecho('No');
}
elseif($show_mode==CFG_EDIT) //show value as input
{
if($show_value!='0' and $show_value!='')
{
// YES
echo '<div class="fld_">';
echo('<input name="'.$show_name.'check" type="checkbox" value="1" checked="checked" />');
echo('<input name="'.$show_name.'" type="hidden" value="1" />');
echo '</div>';
}
else
{
// NO
echo '<div class="fld_">';
echo('<input name="'.$show_name.'check" type="checkbox" value="1" />');
echo('<input name="'.$show_name.'" type="hidden" value="1" />');
echo '</div>';
}
/*
if($show_value!='0' and $show_value!='')
{
echo '<div class="fld_">';
//echo('<img style="margin:0px;" title="'.$show_value.'" src="'.cfg_images_path.'/yes.png" alt="Yes" /> ');
echo('<input id="'.$show_name.'no" name="'.$show_name.'" title="'.$show_value.'" type="radio" value=" " />');
echo('<label style="vertical-align:top;" for="'.$show_name.'no">'); myecho('No'); echo('</label>');
echo('<input id="'.$show_name.'yes" name="'.$show_name.'" title="'.$show_value.'" type="radio" checked="checked" value="1" />');
echo('<label style="vertical-align:top;" for="'.$show_name.'yes">'); myecho('Yes'); echo('</label>');
echo '</div>';
}
else
{
echo '<div class="fld_">';
//echo('<img style="margin:0px;" title="'.$show_value.'" src="'.cfg_images_path.'/no.png" alt="No" /> ');
echo('<input id="'.$show_name.'no" name="'.$show_name.'" title="'.$show_value.'" type="radio" checked="checked" value=" " />');
echo('<label style="vertical-align:top;" for="'.$show_name.'no">'); myecho('No'); echo('</label>');
echo('<input id="'.$show_name.'yes" name="'.$show_name.'" title="'.$show_value.'" type="radio" value="1" />');
echo('<label style="vertical-align:top;" for="'.$show_name.'yes">'); myecho('Yes'); echo('</label>');
echo '</div>';
}
*/
}
elseif($show_mode==CFG_LOAD) //convert value to show format
{
if($show_value!='0' and $show_value!='')
$show_value=1;
else
$show_value='';
}
elseif($show_mode==CFG_SAVE) //convert value to plain data
{
if($show_value!='0' and trim($show_value)!='' and $show_value!='No' and $show_value!=myecho('No','RETURN'))
$show_value=1;
else
$show_value='';
}
?>