An excerpt from my
protected/config/main.php // given situation
looks like:
'modules' => array(
'services' => array(
'modules' => array(
"myModule"
)
)
),
....
....
and for "myModule" I want to integrate a CSS-File. I could not find information about this issue in the documentation. How could I add a CSS-File on the module-level?
Something like that would be for example awesome:
'myModule' => array(
'css-file' => array(
'css-file-name' => css-file-path,
),
),