<?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
{
{
$list_array=array();
$dictionary_array=search_dictionary($variable_name,'');
$dictionary_array[]=$show_value;
for($dd=0;$dd<count($dictionary_array);$dd++)
{
$tmp_array=explode(';',$dictionary_array[$dd]);
for($tt=0;$tt<count($tmp_array);$tt++)
$list_array[trim($tmp_array[$tt])]=1;
}
//print_r($dictionary_array);
//print_r($list_array);
echo('<div class="left">');
reset($list_array);
while(list($key,$val)=each($list_array))
{
$val=trim($val);
if($key)
if(stristr($show_value,$key))
{
echo('<input type="checkbox" checked="checked" onclick="var a=document.getElementsByName(\''.$show_name.'\');if(this.checked){ a[0].value=\''.$key.'; \'+a[0].value; }else{ a[0].value=a[0].value.split(\''.$key.';\').join(\'\').split(\' \').join(\' \');}" />');
echo($key);
echo('<br />');
}
else
{
echo('<input type="checkbox" onclick="var a=document.getElementsByName(\''.$show_name.'\');if(this.checked){ a[0].value=\''.$key.'; \'+a[0].value; }else{ a[0].value=a[0].value.split(\''.$key.';\').join(\'\').split(\' \').join(\' \');}" />');
echo($key);
echo('<br />');
}
}
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(strlen($show_value))
{
$link_array=explode(';',$show_value);
reset($link_array);
while(list($key,$val)=each($link_array))
{
$val=trim($val);
echo($val);
echo '<br />';
}
}
}
elseif($show_mode==CFG_EDIT) //show value as input
{
//if(strlen($show_value))
{
$list_array=array();
$dictionary_array=search_dictionary($variable_name,'');
$dictionary_array[]=$show_value;
for($dd=0;$dd<count($dictionary_array);$dd++)
{
$tmp_array=explode(';',$dictionary_array[$dd]);
for($tt=0;$tt<count($tmp_array);$tt++)
$list_array[trim($tmp_array[$tt])]=1;
}
//print_r($dictionary_array);
//print_r($list_array);
echo('<div class="left">');
reset($list_array);
while(list($key,$val)=each($list_array))
{
$val=trim($val);
if($key)
if(stristr($show_value,$key))
{
echo('<input type="checkbox" checked="checked" onclick="var a=document.getElementsByName(\''.$show_name.'\');if(this.checked){ a[0].value=\''.$key.'; \'+a[0].value; }else{ a[0].value=a[0].value.split(\''.$key.';\').join(\'\').split(\' \').join(\' \');}" />');
echo($key);
echo('<br />');
}
else
{
echo('<input type="checkbox" onclick="var a=document.getElementsByName(\''.$show_name.'\');if(this.checked){ a[0].value=\''.$key.'; \'+a[0].value; }else{ a[0].value=a[0].value.split(\''.$key.';\').join(\'\').split(\' \').join(\' \');}" />');
echo($key);
echo('<br />');
}
}
echo('</div>');
}
echo('<input class="fld_" name="'.$show_name.'" type="text" value="');
echo($show_value.' ');
echo('" />');
}
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;
}
?>