From dd8674c49b3ca6c8c952ae4a3d0b5c4392736c48 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Tue, 24 Nov 2009 13:08:48 -0800 Subject: [PATCH] Add README file, and base class for AssetHelpers. --- README | 1 + lib/WebGUI/AssetHelper.pm | 42 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 43 insertions(+) create mode 100644 README create mode 100644 lib/WebGUI/AssetHelper.pm diff --git a/README b/README new file mode 100644 index 000000000..ff995c2b5 --- /dev/null +++ b/README @@ -0,0 +1 @@ +This is a WebGUI 8 development branch for the creation of Asset Helpers. diff --git a/lib/WebGUI/AssetHelper.pm b/lib/WebGUI/AssetHelper.pm new file mode 100644 index 000000000..b80ce4c53 --- /dev/null +++ b/lib/WebGUI/AssetHelper.pm @@ -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;