I am using asset manager to produce a css collection into the frontend. There are some files which I want to print it inline.
Is there any way to do something like
$this->assets ->collection($inline_name) ->addCss('css/front/_bootstrap.min.css') ->addCss('css/front/site.css') ->join(true) ->setTargetPath('css/front/final'.$inlinename.'.css') ->setTargetUri('css/front/final'.$inline_name.'.css') ->addFilter(new \Phalcon\Assets\Filters\Cssmin());
And in the front-end to get this collection as inline css. I mean that i dont want to use addInlineCss('...') in the controller.