@@ -, +, @@ --- Koha/Plugins/Base.pm | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) --- a/Koha/Plugins/Base.pm +++ a/Koha/Plugins/Base.pm @@ -167,7 +167,7 @@ sub get_template { CLASS => $self->{'class'}, METHOD => scalar $self->{'cgi'}->param('method'), PLUGIN_PATH => $self->get_plugin_http_path(), - PLUGIN_DIR => $self->get_plugin_dir(), + PLUGIN_DIR => $self->bundle_path(), LANG => C4::Languages::getlanguage($self->{'cgi'}), ); @@ -215,22 +215,6 @@ sub get_plugin_http_path { return "/plugin/" . join( '/', split( '::', $self->{'class'} ) ); } -=head2 get_plugin_dir - -To [% INCLUDE %] another TT template from a template, an absolute path to the -template is required. This method returns that absolute file system path. - -usage: my $path = $self->get_plugin_dir(); - -=cut - -sub get_plugin_dir { - my ($self) = @_; - - my $base = C4::Context->config('pluginsdir'); - return "$base/" . join( '/', split( '::', $self->{'class'} ) ); -} - =head2 go_home go_home is a quick redirect to the Koha plugins home page --