|
Lines 2062-2068
sub has_valid_userid {
Link Here
|
| 2062 |
sub generate_userid { |
2062 |
sub generate_userid { |
| 2063 |
my ( $self ) = @_; |
2063 |
my ( $self ) = @_; |
| 2064 |
my @responses = Koha::Plugins->call( |
2064 |
my @responses = Koha::Plugins->call( |
| 2065 |
'patron_generate_userid', { patron => $self }, |
2065 |
'patron_generate_userid', |
|
|
2066 |
{ |
| 2067 |
patron => $self, #FIXME To be deprecated |
| 2068 |
payload => { patron => $self }, |
| 2069 |
}, |
| 2066 |
); |
2070 |
); |
| 2067 |
unless( @responses ) { |
2071 |
unless( @responses ) { |
| 2068 |
# Empty list only possible when there are NO enabled plugins for this method. |
2072 |
# Empty list only possible when there are NO enabled plugins for this method. |
| 2069 |
- |
|
|