X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/5fe965f7e9109f516edb3434c23b235dbee5a4f1..313367d361bdc37ebad9647a82a437eedbf45ef4:/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;