adding skeletons
This commit is contained in:
parent
e017005b17
commit
607a251b11
3 changed files with 82 additions and 0 deletions
26
lib/WebGUI/Macro/_macro.skeleton
Normal file
26
lib/WebGUI/Macro/_macro.skeleton
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
package WebGUI::Macro::MacroSkeleton; # edit this line to match your own macro name
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
# WebGUI is Copyright 2001-2005 Plain Black Corporation.
|
||||
#-------------------------------------------------------------------
|
||||
# Please read the legal notices (docs/legal.txt) and the license
|
||||
# (docs/license.txt) that came with this distribution before using
|
||||
# this software.
|
||||
#-------------------------------------------------------------------
|
||||
# http://www.plainblack.com info@plainblack.com
|
||||
#-------------------------------------------------------------------
|
||||
|
||||
use strict;
|
||||
use WebGUI::Session;
|
||||
|
||||
#-------------------------------------------------------------------
|
||||
sub process {
|
||||
my $somePassedInParameter = shift;
|
||||
my $someOtherPassedInParameter = shift;
|
||||
my $output = ""; # do some stuff
|
||||
return $output;
|
||||
}
|
||||
|
||||
1;
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue