<?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
{
}
elseif($show_mode==CFG_NEW) //show value as input for new value
{
}
elseif($show_mode==CFG_SHOW) //show value in html
{
echo('<div class="fld_">');
echo('<a href="odb_index.php?odb_sys=invite&odb_field='.$show_name.'">');
myecho('Download invitation');
echo('</a>');
echo('</div>');
echo $show_value;
}
elseif($show_mode==CFG_EDIT) //show value as input
{
echo('<div class="fld_">');
echo('<a href="odb_index.php?odb_sys=invite&odb_field='.$show_name.'">');
myecho('Download invitation');
echo('</a>');
echo('</div>');
echo $show_value;
}
elseif($show_mode==CFG_LOAD) //convert value to show format
{
$show_value=$show_value;
}
elseif($show_mode==CFG_SAVE) //convert value to plain data
{
if(strlen($show_value)<10)
$show_value=rand(10000,99999).rand(10000,99999);
$show_value=$show_value;
}
?>