<?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
{
$len=ceil(strlen($show_value)/52)-1;
if($len<3)
$len=3;
echo('<textarea name="'.$show_name.'" class="fld_" rows="'.$len.'" cols="22">');
echo(str_replace(' CRLF',"",str_replace(' CRLF ',"\r\n",$show_value)));
echo('</textarea>');
}
elseif($show_mode==CFG_SHOW) //show value in html
{
if($show_mode_ext==CFG_LIST)
{
$tmp_text=str_replace(' CRLF','',$show_value);
if(strlen($tmp_text)>90)
$tmp_text=substr($tmp_text,0,85).'...';
echo('<div class="fld_">');
echo $tmp_text;
echo('</div> ');
}
else
{
echo('<div class="fld_">');
echo(nl2br(str_replace(' CRLF',"",str_replace(' CRLF ',"\r\n",$show_value))));
echo('</div> ');
}
}
elseif($show_mode==CFG_EDIT) //show value as input
{
//~ echo('<input class="fld_" name="'.$show_name.'" type="text" title="'.$show_value.'" value="');
//~ echo($show_value);
//~ echo('">');
if($show_mode_ext==CFG_LIST)
{
$tmp_text=str_replace(' CRLF','',$show_value);
if(strlen($tmp_text)>90)
$tmp_text=substr($tmp_text,0,85).'...';
echo('<div class="fld_">');
echo $tmp_text;
echo('</div> ');
}
else
{
$len=ceil(strlen($show_value)/52)-1;
if($len<3)
$len=3;
echo('<textarea name="'.$show_name.'" class="fld_" rows="'.$len.'" cols="22">');
echo(str_replace(' CRLF',"",str_replace(' CRLF ',"\r\n",$show_value)));
echo('</textarea>');
}
}
elseif($show_mode==CFG_LOAD) //convert value to show format
{
$show_value=str_replace(' CRLF '," ",$show_value); // \r\n
}
elseif($show_mode==CFG_SAVE) //convert value to plain data
{
$show_value=str_replace("\r\n",' CRLF ',$show_value);
}
?>