<?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
{
$list_array=array();
$dictionary_array=array();
$dictionary_array=search_dictionary($variable_name,'');
$dictionary_array[]=$show_value;
$tmp_show_checkboxes=1;
for($dd=0;$dd<count($dictionary_array);$dd++)
{
if(($dd+1)<count($dictionary_array) and $show_value and $dictionary_array[$dd]==$show_value)
$tmp_show_checkboxes=0;
$list_array[trim($dictionary_array[$dd])]=1;
}
echo('<input class="fld_" autocomplete="off" name="'.$show_name.'" id="'.$show_name.'" type="text" title="'.$show_value.'" onkeydown="new AutoSuggestControl(this, \''.$variable_name.'\', new RemoteStateSuggestions());" value="'.$show_value.'" />');
//echo('<input class="fld_" name="'.$show_name.'" type="text" value="');
// echo($show_value);
//echo('" />');
if($tmp_show_checkboxes)
{
//print_r($dictionary_array);
//print_r($list_array);
echo('<div class="left">');
reset($list_array);
while(list($key,$tmp)=each($list_array))
{
if($key)
if(stristr($show_value,$key))
{
echo('<input type="radio" name="'.$show_name.'_group" checked="checked" onclick="var a=document.getElementsByName(\''.$show_name.'\'); { a[0].value=\''.$key.'\';}" />');
echo($key);
echo('<br />');
}
else
{
echo('<input type="radio" name="'.$show_name.'_group" onclick="var a=document.getElementsByName(\''.$show_name.'\');{ a[0].value=\''.$key.'\';}" />');
echo($key);
echo('<br />');
}
}
echo('</div>');
}
}
elseif($show_mode==CFG_NEW) //show value as input for new value
{
$list_array=array();
$dictionary_array=array();
$dictionary_array=search_dictionary($variable_name,'');
$dictionary_array[]=$show_value;
$tmp_show_checkboxes=1;
for($dd=0;$dd<count($dictionary_array);$dd++)
{
if(($dd+1)<count($dictionary_array) and $show_value and $dictionary_array[$dd]==$show_value)
$tmp_show_checkboxes=0;
$list_array[trim($dictionary_array[$dd])]=1;
}
echo('<input class="fld_" autocomplete="off" name="'.$show_name.'" id="'.$show_name.'" type="text" title="'.$show_value.'" onkeydown="new AutoSuggestControl(this, \''.$variable_name.'\', new RemoteStateSuggestions());" value="'.$show_value.'" />');
//echo('<input class="fld_" name="'.$show_name.'" type="text" value="');
// echo($show_value);
//echo('" />');
if($tmp_show_checkboxes)
{
//print_r($dictionary_array);
//print_r($list_array);
echo('<div class="left">');
reset($list_array);
while(list($key,$tmp)=each($list_array))
{
if($key)
if(stristr($show_value,$key))
{
echo('<input type="radio" name="'.$show_name.'_group" checked="checked" onclick="var a=document.getElementsByName(\''.$show_name.'\'); { a[0].value=\''.$key.'\';}" />');
echo($key);
echo('<br />');
}
else
{
echo('<input type="radio" name="'.$show_name.'_group" onclick="var a=document.getElementsByName(\''.$show_name.'\');{ a[0].value=\''.$key.'\';}" />');
echo($key);
echo('<br />');
}
}
echo('</div>');
}
}
elseif($show_mode==CFG_SHOW) //show value in html
{
echo('<div class="fld_">');
echo($show_value);
echo('</div> ');
}
elseif($show_mode==CFG_EDIT) //show value as input
{
$list_array=array();
$dictionary_array=array();
$dictionary_array=search_dictionary($variable_name,'');
$dictionary_array[]=$show_value;
$tmp_show_checkboxes=1;
if($show_mode_ext==CFG_LIST)
$tmp_show_checkboxes=0;
if($tmp_show_checkboxes)
{
for($dd=0;$dd<count($dictionary_array);$dd++)
{
if(($dd+1)<count($dictionary_array) and $show_value and $dictionary_array[$dd]==$show_value)
$tmp_show_checkboxes=0;
$list_array[trim($dictionary_array[$dd])]=1;
}
}
echo('<input class="fld_" autocomplete="off" name="'.$show_name.'" id="'.$show_name.'" type="text" title="'.$show_value.'" onkeydown="new AutoSuggestControl(this, \''.$variable_name.'\', new RemoteStateSuggestions());" value="'.$show_value.'" />');
//echo('<input class="fld_" name="'.$show_name.'" type="text" value="');
// echo($show_value);
//echo('" />');
if($tmp_show_checkboxes)
{
//print_r($dictionary_array);
//print_r($list_array);
echo('<div class="left">');
reset($list_array);
while(list($key,$tmp)=each($list_array))
{
if($key)
if(stristr($show_value,$key))
{
echo('<input type="radio" name="'.$show_name.'_group" checked="checked" onclick="var a=document.getElementsByName(\''.$show_name.'\'); { a[0].value=\''.$key.'\';}" />');
echo($key);
echo('<br />');
}
else
{
echo('<input type="radio" name="'.$show_name.'_group" onclick="var a=document.getElementsByName(\''.$show_name.'\');{ a[0].value=\''.$key.'\';}" />');
echo($key);
echo('<br />');
}
}
echo('</div>');
}
}
elseif($show_mode==CFG_LOAD) //convert value to show format
{
$show_value=$show_value;
}
elseif($show_mode==CFG_SAVE) //convert value to plain data
{
$show_value=$show_value;
}
?>