I'd love to use PHP variables in my CSS files but I don't want to load up the whole Symfony stack for each file load. Any one have any best practices and/or plugins to manage their CSS files in Symfony?
|
1
|
|
|
|
|
|
but you dont need full symfony stack for that ( except if you need some internal symfony state / variable ). You just use
and then you can use php inside your css. you could add appropriate headers (text/css) with header in php. |
||
|
|
|
Here's one good Plugin that tries to manage and/or combine your assets: http://www.symfony-project.org/plugins/sfCombinePlugin Here's their description:
Also, since it's compiled, you may be able to use simple PHP as long as the variables stick within the same file. |
||
|
|
