Mobile: templates nach templates/mobile_webpages verschoben
[kivitendo-erp.git] / SL / Layout / MobileLogin.pm
1 package SL::Layout::MobileLogin;
2
3 use strict;
4 use parent qw(SL::Layout::Base);
5 use SL::Layout::MaterialStyle;
6 use SL::Layout::MaterialMenu;
7
8 sub get_stylesheet_for_user {
9   # overwrite kivitendo fallback
10   'css/material';
11 }
12
13 sub webpages_path {
14   "templates/mobile_webpages"
15 }
16
17 sub init_sub_layouts {
18   [
19     SL::Layout::None->new,
20     SL::Layout::MaterialStyle->new,
21     SL::Layout::MaterialMenu->new,
22   ]
23 }
24
25 1;