<?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(substr($show_value,-5)=='.file')
$show_value=substr($show_value,0,-5);
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
{
//~ echo('<a href="odb_index.php?odb_sys=upload" onclick="var a=document.getElementsByName(\''.$show_name.'\'); window.popUpField=a[0];popup=window.open(\'index.php?odb_sys=upload\',\'popup\',\'SCROLLBARS,RESIZABLE,WIDTH=330,HEIGHT=400\'); return(false);">');
//~ myecho('Upload');
//~ echo('</a>');
}
elseif($show_mode==CFG_SHOW) //show value in html
{
$ext=strtolower(substr($show_value,strrpos($show_value,'.')+1));
$preamble=substr(purename($show_value),0,1).'/'.substr(purename($show_value),0,2);
if(strlen($show_value))
{
if(stristr('..png.jpg.gif.tiftiffjpeg',substr($show_value,-4)))
echo '<img title="'.$show_value.'" src="odb_index.php?odb_sys=download&odb_field='.$show_name.'" alt="'.$show_value.'" />';
else
{
echo('<div class="fld_">');
echo('<a href="odb_index.php?odb_sys=download&odb_field='.$show_name.'">');
echo '<img style="margin:0px 8px 0px 0px;" src="images/'.$ext.'.gif" />';
echo substr($show_value,0,20);
echo('</a>');
echo ' '.readable_size(filesize(cfg_data_path.'/data/files/'.$preamble.'/'.$show_value.'.file'));
echo('</div>');
}
}
}
elseif($show_mode==CFG_EDIT) //show value as input
{
$ext=strtolower(substr($show_value,strrpos($show_value,'.')+1));
$preamble=substr(purename($show_value),0,1).'/'.substr(purename($show_value),0,2);
if(strlen($show_value))
{
if(stristr('..png.jpg.gif.tiftiffjpeg',substr($show_value,-4)))
echo '<img title="'.$show_value.'" src="odb_index.php?odb_sys=download&odb_field='.$show_name.'" alt="'.$show_value.'" />';
else
{
echo('<div class="fld_">');
echo('<a href="odb_index.php?odb_sys=download&odb_field='.$show_name.'">');
echo '<img style="margin:0px 8px 0px 0px;" src="images/'.$ext.'.gif" />';
echo basename($show_value);
//myecho('Download');
echo('</a>');
echo ' '.readable_size(filesize(cfg_data_path.'/data/files/'.$preamble.'/'.$show_value.'.file'));
echo('</div>');
}
}
echo('<div class="fld_" style="text-align:right;">');
echo('<a href="odb_index.php?odb_sys=upload" onclick="var a=document.getElementsByName(\''.$show_name.'\'); window.popUpField=a[0];popup=window.open(\'index.php?odb_script=upload&odb_popup=1&odb_search=---&odb_field='.$show_name.'\',\'popup\',\'SCROLLBARS,RESIZABLE,WIDTH=430,HEIGHT=150\'); return(false);">');
myecho('Upload new file');
echo('</a>');
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;
}
?>