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