kivitendo/SL/Layout/Material.pm @ 68748667
a381240c | Sven Schöling | package SL::Layout::Material;
|
||
use strict;
|
||||
use parent qw(SL::Layout::Base);
|
||||
use SL::Layout::None;
|
||||
use SL::Layout::MaterialMenu;
|
||||
use SL::Layout::MaterialStyle;
|
||||
use SL::Layout::Content;
|
||||
sub get_stylesheet_for_user {
|
||||
# overwrite kivitendo fallback
|
||||
'css/material';
|
||||
}
|
||||
1f1db278 | Sven Schöling | sub webpages_path {
|
||
"templates/mobile_webpages";
|
||||
}
|
||||
a381240c | Sven Schöling | sub init_sub_layouts {
|
||
[
|
||||
SL::Layout::None->new,
|
||||
SL::Layout::MaterialStyle->new,
|
||||
SL::Layout::MaterialMenu->new,
|
||||
SL::Layout::Content->new,
|
||||
]
|
||||
}
|
||||
1;
|