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