| Next: Yawns::Adverts | Previous: Singleton::Session | [Table of Contents] |
Yawns::About - A module for working with the static "about" pages.
#!/usr/bin/perl -w
use Yawns::About;
use strict;
my $about = Yawns::About->new();
my @all = $about->get();
foreach my $page ( @all )
{
my $text = $about->get( name => $page );
}
This module deals with the static "about" pages we contain.
Create a new instance of this object.
Find and return the given static page text.
Set the text for a given about page.
Delete the given about page.
Return an array of all the about pages we contain.
Clean any cached content we might have.
Steve Kemp
http://www.steve.org.uk/
Copyright (c) 2005,2006 by Steve Kemp. All rights reserved.
This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The LICENSE file contains the full text of the license.