kivitendo/SL/Controller/Layout/Top.pm @ fb005f3f
4a12c839 | Sven Schöling | package SL::Controller::Layout::Top;
|
||
use strict;
|
||||
use parent qw(SL::Controller::Layout::Base);
|
||||
a8814e0e | Sven Schöling | sub pre_content {
|
||
4a12c839 | Sven Schöling | my ($self) = @_;
|
||
$self->SUPER::render('menu/header', { partial => 1, no_output => 1 },
|
||||
now => DateTime->now_local,
|
||||
is_fastcgi => scalar($::dispatcher->interface_type =~ /fastcgi/i),
|
||||
is_links => scalar($ENV{HTTP_USER_AGENT} =~ /links/i));
|
||||
}
|
||||
sub stylesheets {
|
||||
# 'frame_header/header.css';
|
||||
}
|
||||
1;
|