View | Details | Raw Unified | Return to bug 35331
Collapse All | Expand All

(-)a/Koha/Illrequest.pm (-4 / +1 lines)
Lines 2025-2034 sub get_staff_table_actions { Link Here
2025
        }
2025
        }
2026
    ];
2026
    ];
2027
2027
2028
    my @plugin_responses = Koha::Plugins->call('ill_table_actions');
2028
    Koha::Plugins->call( 'ill_table_actions', \$ill_table_actions );
2029
    for my $plugin_variables (@plugin_responses) {
2030
        push( @{$ill_table_actions}, $plugin_variables );
2031
    }
2032
2029
2033
    return $ill_table_actions;
2030
    return $ill_table_actions;
2034
}
2031
}
(-)a/t/lib/plugins/Koha/Plugin/Test.pm (-8 / +10 lines)
Lines 370-383 sub after_recall_action { Link Here
370
}
370
}
371
371
372
sub ill_table_actions {
372
sub ill_table_actions {
373
    my ( $self ) = @_;
373
    my ( $self, $table_actions ) = @_;
374
374
375
    return {
375
    push(
376
        button_link_text           => 'Test text',
376
        @{$$table_actions},
377
        append_column_data_to_link => 1,
377
        {
378
        button_class               => 'test class',
378
            button_link_text           => 'Test text',
379
        button_link                => 'test link'
379
            append_column_data_to_link => 1,
380
    };
380
            button_class               => 'test class',
381
            button_link                => 'test link'
382
        }
383
    );
381
}
384
}
382
385
383
sub _private_sub {
386
sub _private_sub {
384
- 

Return to bug 35331