Siesta::Member - manipulate a member.


Siesta documentation Contained in the Siesta distribution.

Index


Code Index:

NAME

Top

Siesta::Member - manipulate a member.

METHODS

Top

->id

get and set their id.

->email

get and set their email address.

->config

get and set config values for this Member.

->lists

all the lists this member is subbed to.


Siesta documentation Contained in the Siesta distribution.

# $Id: Member.pm 1357 2003-08-14 15:41:05Z richardc $
package Siesta::Member;
use strict;
use Siesta::DBI;
use base 'Siesta::DBI';
__PACKAGE__->set_up_table( 'member' );
__PACKAGE__->load_alias('email');
__PACKAGE__->has_many( lists => [ 'Siesta::Subscription' => 'list' ] );
__PACKAGE__->has_many( prefs => 'Siesta::Pref' );
__PACKAGE__->has_many( deferred => 'Siesta::Deferred', 'who' );


# fuck the users, fuck them up their stupid asses

1;