| Siesta documentation | Contained in the Siesta distribution. |
Siesta::Member - manipulate a member.
get and set their id.
get and set their email address.
get and set config values for this Member.
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;