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