Código PHP:
class cssFilter extends sfFilter
{
public function execute($filterChain){
if ($this->isFirstCall()){
$response = $this->getContext()->getResponse();
//busco el css y lo cargo
$configuraciones=$this->configuracion = Doctrine_Core::getTable('Configuracion')
->createQuery('c')
->select('*')
->execute();
$response->addStylesheet($configuraciones[0]->getPlantilla());
// Ejecutar el proximo filtro
$filterChain->execute();
}
}
}