<?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($popup)
{
echo '<a href="" onclick="opener.popUpField.value=\''.$show_value.'\';window.close();return(false);">'.$show_value.'</a> ';
}
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
{
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.'"/>');
}
elseif($show_mode==CFG_SHOW) //show value in html
{
echo('<a href="index.php?odb_search=['.$show_value.']&odb_tree0='.$variable_name.'&odb_tree1=sysGroupBy">'.$show_value.'</a>');
}
elseif($show_mode==CFG_EDIT) //show value as input
{
if(get('tree0')==$variable_name)
$folder_file='openfolder.png';
else
$folder_file='folder.png';
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.'"/>');
if($show_value)
echo(' <a title="'.$show_value.'" href="index.php?odb_search=['.$show_value.']&odb_tree0='.$variable_name.'&odb_tree1=sysGroupBy"><img style="vertical-align:bottom; margin:1px 0px; background-color:#fff; border:#aaa 1px outset; padding:1px;" src="'.cfg_images_path.'/'.$folder_file.'" alt="Tree" /></a>');
}
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;
}
?>