|
Lines 163-174
sub get_template {
Link Here
|
| 163 |
authnotrequired => 1, |
163 |
authnotrequired => 1, |
| 164 |
} |
164 |
} |
| 165 |
); |
165 |
); |
| 166 |
|
|
|
| 167 |
$template->param( |
166 |
$template->param( |
| 168 |
CLASS => $self->{'class'}, |
167 |
CLASS => $self->{'class'}, |
| 169 |
METHOD => scalar $self->{'cgi'}->param('method'), |
168 |
METHOD => scalar $self->{'cgi'}->param('method'), |
| 170 |
PLUGIN_PATH => $self->get_plugin_http_path(), |
169 |
PLUGIN_PATH => $self->get_plugin_http_path(), |
| 171 |
PLUGIN_DIR => $self->get_plugin_dir(), |
170 |
PLUGIN_DIR => $self->get_plugin_dir(), |
|
|
171 |
LANG => $self->{'cgi'}->cookie('KohaOpacLanguage') || 'en' |
| 172 |
); |
172 |
); |
| 173 |
|
173 |
|
| 174 |
return $template; |
174 |
return $template; |
| 175 |
- |
|
|