Add README file, and base class for AssetHelpers.
This commit is contained in:
parent
c86ef6ba15
commit
dd8674c49b
2 changed files with 43 additions and 0 deletions
1
README
Normal file
1
README
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
This is a WebGUI 8 development branch for the creation of Asset Helpers.
|
||||||
42
lib/WebGUI/AssetHelper.pm
Normal file
42
lib/WebGUI/AssetHelper.pm
Normal file
|
|
@ -0,0 +1,42 @@
|
||||||
|
package WebGUI::AssetHelper;
|
||||||
|
|
||||||
|
=head1 LEGAL
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
WebGUI is Copyright 2001-2009 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
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=head1 NAME
|
||||||
|
|
||||||
|
Package WebGUI::AssetHelper
|
||||||
|
|
||||||
|
=head1 DESCRIPTION
|
||||||
|
|
||||||
|
Base class for all Asset Helpers, which provide editing and administrative controls for Assets inside
|
||||||
|
the Admin Console.
|
||||||
|
|
||||||
|
=head1 METHODS
|
||||||
|
|
||||||
|
These methods are available from this class:
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
#-------------------------------------------------------------------
|
||||||
|
|
||||||
|
=head2 process ( )
|
||||||
|
|
||||||
|
Default method called by the Asset Helper content handler.
|
||||||
|
|
||||||
|
=cut
|
||||||
|
|
||||||
|
sub process {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
1;
|
||||||
Loading…
Add table
Add a link
Reference in a new issue