CGI-Builder-Auth
view release on metacpan or search on metacpan
lib/CGI/Builder/Auth/Group.pm view on Meta::CPAN
; $group = $group || $self->id
; return if !$self->_exists($group)
; $self->_group_admin->list($group)
}
; sub DESTROY
{ ref($_group_admin)
and !Scalar::Util::isweak($_group_admin)
and Scalar::Util::weaken($_group_admin)
}
=head1 NAME
CGI::Builder::Auth::Group - Provide access to a group table and its rows
=head1 DESCRIPTION
This Class provides an API for manipulating a Group table. The implementation
lib/CGI/Builder/Auth/User.pm view on Meta::CPAN
; my $stored_passwd = $self->_user_admin->password($self->id)
; return $self->_user_admin->{ENCRYPT} eq 'crypt'
? crypt($passwd,$stored_passwd) eq $stored_passwd
: $self->_user_admin->encrypt($passwd) eq $stored_passwd
}
; sub DESTROY
{ ref($_user_admin)
and !Scalar::Util::isweak($_user_admin)
and Scalar::Util::weaken($_user_admin)
}
=head1 NAME
CGI::Builder::Auth::User - Provide access to a user table and its rows
=head1 DESCRIPTION
This Class provides an API for manipulating a User table. The implementation
stores the table in a text file, but developers are free to create their own
( run in 1.194 second using v1.01-cache-2.11-cpan-65fba6d93b7 )