X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/54746051d506e6e6c76c77b85d381cae4bf86b89..42ccfb976289de017f9f355bd3bf0e02bcec80ea:/SL/User.pm diff --git a/SL/User.pm b/SL/User.pm index f077eefe8..44efe5c58 100644 --- a/SL/User.pm +++ b/SL/User.pm @@ -412,4 +412,18 @@ sub data { +{ %{ $_[0] } } } +sub get_default_myconfig { + my ($self_or_class, %user_config) = @_; + + return ( + countrycode => 'de', + css_path => 'css', # Needed for menunew, see SL::Layout::Base::get_stylesheet_for_user + dateformat => 'dd.mm.yy', + numberformat => '1.000,00', + stylesheet => 'kivitendo.css', + timeformat => 'hh:mm', + %user_config, + ); +} + 1;