| Buzznet-API documentation | Contained in the Buzznet-API distribution. |
Buzznet::Gallery - Buzznet API Gallery Object
use Buzznet::Gallery;
This class is mainly used by Buzznet::API to encapsulate the subgalleries of a Buzznet user
Returns the url of the subgallery
Returns the title of the subgallery
Returns the description of the subgallery
Returns the entry_id of the latest entry of the subgallery
Returns the unix timestamp of the latest entry
Returns the url of the latest entry into the subgallery
Check out http://www.buzznet.com/developers for the latest tools and libraries available for all languages and platforms. The complete XML-RPC Buzznet API can be found at http://www.buzznet.com/developers/apidocs/.
Buzznet::Comment Buzznet::Entry Buzznet::Profile Buzznet::API
Kevin Woolery, <kevin@buzznet.com>
Copyright (C) 2004 by Kevin Woolery
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.5 or, at your option, any later version of Perl 5 you may have available.
| Buzznet-API documentation | Contained in the Buzznet-API distribution. |
package Buzznet::Gallery; use strict; use warnings; require Exporter; use AutoLoader qw(AUTOLOAD); our @ISA = qw(Exporter); # Items to export into callers namespace by default. Note: do not export # names by default without a very good reason. Use EXPORT_OK instead. # Do not simply export all your public functions/methods/constants. # This allows declaration use Buzznet::Gallery ':all'; # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK # will save memory. our %EXPORT_TAGS = ( 'all' => [ qw( ) ] ); our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } ); our @EXPORT = qw( ); our $VERSION = '0.01'; #require XSLoader; #XSLoader::load('Buzznet::Gallery', $VERSION); # Preloaded methods go here. sub new { my ($package,@refs) = @_; my $inst = {@refs}; $inst->{"error"} = undef; return bless($inst,$package); } sub url { my $self = shift; return $self->{"url"}; } sub title { my $self = shift; return $self->{"title"}; } sub description { my $self = shift; return $self->{"description"}; } sub entry_id { my $self = shift; return $self->{"entry_id"}; } sub mtime { my $self = shift; return $self->{"mtime"}; } sub image { my $self = shift; return $self->{"image"}; } # Autoload methods go after =cut, and are processed by the autosplit program. 1; __END__