
####
Base
####


****
NAME
****


Kernel::Output::CSS::Base - output css module base class

new()
=====


Create an object. Do not use it directly, instead use:


.. code-block:: perl

     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.


.. code-block:: perl

     my $CSS = $CSSObject->CreateCSS();


Returns:


.. code-block:: perl

     my $CSS = 'CSS';




