|
Lines 133-140
for my $resultsbr (@resultsbr) {
Link Here
|
| 133 |
}; |
133 |
}; |
| 134 |
} |
134 |
} |
| 135 |
|
135 |
|
|
|
136 |
my $schema = Koha::Database->new()->schema(); |
| 137 |
my $servers = $schema->resultset('Z3950server')->search( |
| 138 |
{ |
| 139 |
recordtype => 'biblio', |
| 140 |
servertype => ['zed', 'sru'], |
| 141 |
}, |
| 142 |
{ result_class => 'DBIx::Class::ResultClass::HashRefInflator', |
| 143 |
order_by => ['rank', 'servername'], |
| 144 |
}, |
| 145 |
); |
| 146 |
|
| 136 |
my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] }); |
147 |
my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] }); |
| 137 |
$template->param( |
148 |
$template->param( |
|
|
149 |
servers => $servers, |
| 138 |
frameworks => $frameworks, |
150 |
frameworks => $frameworks, |
| 139 |
breeding_count => $countbr, |
151 |
breeding_count => $countbr, |
| 140 |
breeding_loop => $breeding_loop, |
152 |
breeding_loop => $breeding_loop, |