|
Lines 1119-1125
sub set_password {
Link Here
|
| 1119 |
module => 'members', |
1119 |
module => 'members', |
| 1120 |
letter_code => 'PASSWORD_CHANGE', |
1120 |
letter_code => 'PASSWORD_CHANGE', |
| 1121 |
branchcode => $self_from_storage->branchcode, |
1121 |
branchcode => $self_from_storage->branchcode, |
| 1122 |
, |
1122 |
|
| 1123 |
lang => $self_from_storage->lang || 'default', |
1123 |
lang => $self_from_storage->lang || 'default', |
| 1124 |
tables => { |
1124 |
tables => { |
| 1125 |
'branches' => $self_from_storage->branchcode, |
1125 |
'branches' => $self_from_storage->branchcode, |
|
Lines 3475-3483
sub is_anonymous {
Link Here
|
| 3475 |
return ( $anonymous_patron && $self->borrowernumber eq $anonymous_patron ) ? 1 : 0; |
3475 |
return ( $anonymous_patron && $self->borrowernumber eq $anonymous_patron ) ? 1 : 0; |
| 3476 |
} |
3476 |
} |
| 3477 |
|
3477 |
|
| 3478 |
=head3 get_permissions |
3478 |
=head3 permissions |
| 3479 |
|
3479 |
|
| 3480 |
my $flags = $patron->get_permissons |
3480 |
my $flags = $patron->permissions |
| 3481 |
|
3481 |
|
| 3482 |
Returns a structure such as: |
3482 |
Returns a structure such as: |
| 3483 |
{ |
3483 |
{ |
| 3484 |
- |
|
|