Tagged Questions
1
vote
1answer
97 views
How to call one javascript asset only in laravel?
In my base controller, I added two asset inside:
Asset::script('jquery', 'js/jquery-2.0.0.min.js');
Asset::script('test', 'js/test.js');
But when I called : Asset::script, all these two ...
3
votes
1answer
126 views
Symfony Asset bundling
In Symfony 2 Im using asset bundling like so.
{% stylesheets
'bootstrap/css/bootstrap.css'
'bootstrap/flat/css/flat-ui.css'
filter='cssrewrite'
...
0
votes
1answer
94 views
Symfony2 assets are not shown
I'm working on Symfony2.
pq anyone knows my website takes no assets correctly?
I'm working on app.php with $ kernel = new AppKernel ('prod', false);
When I upload the site to the web server but I see ...
4
votes
1answer
960 views
Asset Pipeline/Framework for PHP
Background
I am working on "modernizing" a pre-existing PHP-driven website. This website started out as a static website with a few php methods. It now has a mobile web app, multiple models, and a ...
0
votes
1answer
517 views
Assetic AssetFactory::createAsset(array $input, …) - $input doesn't accept \Assetic\Asset\* elements
I have a couple of methods which combine many CSS assets to one, minify them and dump them (cached) to a generated filename like "/assetic/6bad22c.css". I achieve this by making use of the following:
...
0
votes
1answer
306 views
Media asset management solution php, mysql, cloud
I'm looking for a media asset management solution which is ...
free/opensource
runs preferetly on php, mysql
stores assets in the cloud.
has customizable rights for usergroups and assets
cdn ...
2
votes
1answer
1k views
Symfony2 - Using CSS assets in PHP templates
I have installed my assets using:
php app/console assets:install web/
and the public resources have been moved to the web folder without problems.
I now want to access these assets from my php ...
0
votes
1answer
1k views
Symfony: Inculde css and js on a php templete
How to include .css and .js files in a php file (index.html.php for example) on Symfony? (I'm using Symfony2 if that matters), I read that I must include the src/link within an asset function like ...