NAME
Perlbug::Object::User - User class
DESCRIPTION
Perlbug user class.
For inherited methods, see Perlbug::Object
SYNOPSIS
use Perlbug::Object::User;
print Perlbug::Object::User->read('richardf')->format('a');
METHODS
- new
-
Create new User object:
my $o_usr = Perlbug::Object::User->new();
- updatable
-
Check if current user object/s is/are allowed to be updated
Returns the updatable ids.
print 'updatable: '.join(', ', $o_obj->updatable(\@userids));
- insertid
-
Returns newly inserted id from recently created object.
my $new_oid = $o_obj->insertid();
- htmlify
-
html formatter for individual user entries for placement
my $h_usr = $o_usr->htmlify($h_usr);
FORMATS
Formatters for all occasions...
- FORMAT_l
-
Lean (list) ascii format for users
my ($top, $format, @args) = $o_usr->FORMAT_l(\%data);
- FORMAT_a
-
ascii format for users
my ($top, $format, @args) = $o_usr->FORMAT_a(\%data);
- FORMAT_A
-
ASCII format for users
my ($top, $format, @args) = $o_usr->FORMAT_A(\%data);
- FORMAT_L
-
Lean html format for users:
my ($top, $format, @args) = $o_usr->FORMAT_L(\%data);
- FORMAT_h
-
html format for users:
my ($top, $format, @args) = $o_usr->FORMAT_h(\%data);
- FORMAT_H
-
HTML format for users:
my ($top, $format, @args) = $o_usr->FORMAT_H(\%data);
AUTHOR
Richard Foley perlbug@rfi.net 2000
4 POD Errors
The following errors were encountered while parsing the POD:
- Around line 43:
'=item' outside of any '=over'
- Around line 167:
You forgot a '=back' before '=head1'
- Around line 172:
'=item' outside of any '=over'
- Around line 326:
You forgot a '=back' before '=head1'