check-upload —
| Attribute | Pos. | Req. | Default | Description |
|---|---|---|---|---|
| file | Yes | Yes | ||
| same | Yes | |||
| interpolate | 0 | interpolate output? | ||
| hide | 0 | Hide the tag return value? |
Interchange 5.9.0:
Source: code/UI_Tag/check_upload.coretag
Lines: 27
# Copyright 2002-2007 Interchange Development Group and others
#
# 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. See the LICENSE file for details.
#
# $Id: check_upload.coretag,v 1.4 2007-03-30 23:40:54 pajamian Exp $
UserTag check-upload Order file same
UserTag check-upload PosNumber 2
UserTag check-upload Version $Revision: 1.4 $
UserTag check-upload Routine <<EOR
sub {
use File::Copy;
my $file = shift;
my $same = shift;
my $dir = $Vend::Cfg->{ProductDir};
$same = $same ? '' : '+';
if (-s "upload/$file") {
File::Copy::copy "upload/$file", "$dir/$file$same"
or return "Couldn't copy uploaded file!";
unlink "upload/$file";
}
return '';
}
EOR