Lines 3202-3208
Helper method that takes care of calling all plugin hooks
Link Here
|
3202 |
=cut |
3202 |
=cut |
3203 |
|
3203 |
|
3204 |
sub _after_biblio_action_hooks { |
3204 |
sub _after_biblio_action_hooks { |
3205 |
my ( $args ) = @_; |
3205 |
my ($args) = @_; |
3206 |
|
3206 |
|
3207 |
my $biblio_id = $args->{biblio_id}; |
3207 |
my $biblio_id = $args->{biblio_id}; |
3208 |
my $action = $args->{action} // q{}; |
3208 |
my $action = $args->{action} // q{}; |
Lines 3211-3217
sub _after_biblio_action_hooks {
Link Here
|
3211 |
Koha::Plugins->call( |
3211 |
Koha::Plugins->call( |
3212 |
'after_biblio_action', |
3212 |
'after_biblio_action', |
3213 |
{ |
3213 |
{ |
3214 |
action => $action, |
3214 |
action => $action, |
|
|
3215 |
payload => { |
3216 |
biblio => $biblio, |
3217 |
biblio_id => $biblio_id, |
3218 |
}, |
3219 |
# NOTE: Deprecate these duplicate params for 24.11.00 |
3215 |
biblio => $biblio, |
3220 |
biblio => $biblio, |
3216 |
biblio_id => $biblio_id, |
3221 |
biblio_id => $biblio_id, |
3217 |
} |
3222 |
} |
3218 |
- |
|
|