diff --git a/SL/InstanceConfiguration.pm b/SL/InstanceConfiguration.pm index 4c767961da..ece924ee66 100644 --- a/SL/InstanceConfiguration.pm +++ b/SL/InstanceConfiguration.pm @@ -62,6 +62,11 @@ sub get_address { return join "\n", grep { $_ } ($self->get_address_street1, $self->get_address_street2, $zipcode_city, $self->get_address_country); } +sub get_layout_style { + return $_[0]->data->{layout_style} if exists $_[0]->data->{layout_style}; + return ''; +} + sub AUTOLOAD { our $AUTOLOAD; @@ -121,6 +126,11 @@ Returns an array of configured currencies. Returns the default currency or undef if no currency has been configured. +=item C + +Returns the forced default layout style or '' if the database column +does not exist yet. + =item C Returns the default accounting method, accrual or cash