Base#
NAME#
Kernel::Output::CSS::Base - output css module base class
new()#
Create an object. Do not use it directly, instead use:
use Kernel::System::ObjectManager;
local $Kernel::OM = Kernel::System::ObjectManager->new();
my $CSSObject = $Kernel::OM->Get('Kernel::Output::CSS');
CreateCSS()#
This base function returns an empty CSS string. It must be implemented as desired in a separate module.
my $CSS = $CSSObject->CreateCSS();
Returns:
my $CSS = 'CSS';