|
Lines 274-295
if ( $step == 5 ) {
Link Here
|
| 274 |
|
274 |
|
| 275 |
my $libraries = Koha::Libraries->search( {}, { order_by => ['branchcode'] }, ); |
275 |
my $libraries = Koha::Libraries->search( {}, { order_by => ['branchcode'] }, ); |
| 276 |
$template_params->{libraries} = $libraries; |
276 |
$template_params->{libraries} = $libraries; |
| 277 |
$template_params->{group_types} = [ |
|
|
| 278 |
{ |
| 279 |
categorytype => 'searchdomain', |
| 280 |
categories => [ |
| 281 |
Koha::LibraryCategories->search( |
| 282 |
{ categorytype => 'searchdomain' } |
| 283 |
) |
| 284 |
], |
| 285 |
}, |
| 286 |
{ |
| 287 |
categorytype => 'properties', |
| 288 |
categories => [ |
| 289 |
Koha::LibraryCategories->search( { categorytype => 'properties' } ) |
| 290 |
], |
| 291 |
}, |
| 292 |
]; |
| 293 |
|
277 |
|
| 294 |
if ( $step > 5 ) { |
278 |
if ( $step > 5 ) { |
| 295 |
$template_params->{all_done} = 1; # If step 5 is complete, we are done! |
279 |
$template_params->{all_done} = 1; # If step 5 is complete, we are done! |
| 296 |
- |
|
|