Buzznet::Gallery - Buzznet API Gallery Object


Buzznet-API documentation Contained in the Buzznet-API distribution.

Index


Code Index:

NAME

Top

Buzznet::Gallery - Buzznet API Gallery Object

SYNOPSIS

Top

  use Buzznet::Gallery;

DESCRIPTION

Top

This class is mainly used by Buzznet::API to encapsulate the subgalleries of a Buzznet user

METHODS

Top

url

Returns the url of the subgallery

title

Returns the title of the subgallery

description

Returns the description of the subgallery

entry_id

Returns the entry_id of the latest entry of the subgallery

mtime

Returns the unix timestamp of the latest entry

image

Returns the url of the latest entry into the subgallery

SEE ALSO

Top

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

AUTHOR

Top

Kevin Woolery, <kevin@buzznet.com>

COPYRIGHT AND LICENSE

Top


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__