From 37b17d9ba0d71ab8d2cb1c13673990bc4abf85f3 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Thu, 2 May 2019 15:51:30 -0300 Subject: [PATCH] Bug 22834: Add Koha::Plugins::Base->bundle_path This patch adds a 'bundle_path' method that return the base path for assets included in the plugin. The idea is that it will be used for calculation of the absolute path in the filesystem for static content. To test: - Apply the unit tests patch - Run: $ kshell k$ prove t/db_dependent/Plugins.t => FAIL: The method is not implemented - Apply this patch - Run: k$ prove t/db_dependent/Plugins.t => SUCCESS: Tests pass! - Sign off :-D --- Koha/Plugins/Base.pm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Koha/Plugins/Base.pm b/Koha/Plugins/Base.pm index 2cebe636d9..59b60ef670 100644 --- a/Koha/Plugins/Base.pm +++ b/Koha/Plugins/Base.pm @@ -69,6 +69,8 @@ sub new { $self->store_data({ '__INSTALLED_VERSION__' => $plugin_version }); } + $self->{_bundle_path} = abs_path($self->mbf_dir); + return $self; } @@ -210,6 +212,20 @@ sub output_html { output_with_http_headers( $self->{cgi}, undef, $data, 'html', $status, $extra_options ); } +=head2 bundle_path + + my $bundle_path = $self->bundle_path + +Returns the directory in which bundled files are. + +=cut + +sub bundle_path { + my ($self) = @_; + + return $self->{_bundle_path}; +} + =head2 output $self->output( $data, $content_type[, $status[, $extra_options]]); -- 2.21.0