Lines 378-391
sub template_include_paths {
Link Here
|
378 |
} |
378 |
} |
379 |
|
379 |
|
380 |
sub ill_table_actions { |
380 |
sub ill_table_actions { |
381 |
my ( $self ) = @_; |
381 |
my ( $self, $table_actions ) = @_; |
382 |
|
382 |
|
383 |
return { |
383 |
push( |
384 |
button_link_text => 'Test text', |
384 |
@{$$table_actions}, |
385 |
append_column_data_to_link => 1, |
385 |
{ |
386 |
button_class => 'test class', |
386 |
button_link_text => 'Test text', |
387 |
button_link => 'test link' |
387 |
append_column_data_to_link => 1, |
388 |
}; |
388 |
button_class => 'test class', |
|
|
389 |
button_link => 'test link' |
390 |
} |
391 |
); |
389 |
} |
392 |
} |
390 |
|
393 |
|
391 |
sub _private_sub { |
394 |
sub _private_sub { |
392 |
- |
|
|