26

We are building a new site using Symfony2, and Assetic looks very promising for resource management, in particular for combining and processing all js/css files together automatically.

We wil have some resources that are used site wide, and some that are specific to particular pages. We will also be using a three tiered inherited approach to templates.

Is there a way to combine the two concepts, i.e. to automatically add additional resources in inherited templates so that they are all output as a single resource?

Paweł Madej
  • 1,229
  • 23
  • 42
Ken Cooper
  • 851
  • 1
  • 9
  • 17

2 Answers2

23

You can actually do the following:

In layout.html.twig (or whatever your layout is)

{% block stylesheets %}
    {% stylesheets 'your_assets_here' %}
         <link rel="stylesheet" href="{{ asset_url }}" />
    {% endstylesheets %}
{% endblock %}

And in any template that extends that layout:

{% block stylesheets %}
    {{ parent() }}
    {% stylesheets 'additional_assets_here' %}
         <link rel="stylesheet" href="{{ asset_url }}" />
    {% endstylesheets %}
{% endblock %}

Then you wouldn't need to retype all the old assets as suggested by Nemanja Niljkovic

Populus
  • 7,470
  • 3
  • 38
  • 54
  • Yes, but (cite from Nemana Niljkovic answer): "but you would have 2 links then as you can't combine the old assetic tag with the new one" – Marius Balčytis Aug 13 '12 at 18:46
  • 28
    There isn't much point in combining the new files into the set of stylesheets/scripts from the parent, because that would defeat the purpose of caching as you may have many such pages with their own set of additional files... combining them would mean a new set of combined files for *every page*! Say bye bye to browser cache. Therefore it is actually better to have a separate set of combined files for pages with tier own additional files, so at least the more generic set of stylesheets/scripts will always be cached – Populus Aug 14 '12 at 07:02
18

Unfortunately, you can't :(

You can't override the assetic tags to add more assets. You can however do the following:

{% block stylesheets %}
    {% stylesheets 'your_assets_here' %}
         <link rel="stylesheet" href="{{ asset_url }}" />
    {% endstylesheets %}
{% endblock %}

Then, when you extend the template:

{% block stylesheets %}
    {% stylesheets 'your_old_assets_here' 'your_new_assets_here' %}
         <link rel="stylesheet" href="{{ asset_url }}" />
    {% endstylesheets %}
{% endblock %}

In the overridden block, you can use parent() to include the parent block, but you would have 2 links then: you can't combine the old assetic tag with the new one.

You could however make a twig macro that would output the {% stylesheets %} assetic tag with your old assets, and as input it would contain new asset locations.

More info here.

Al Foиce ѫ
  • 4,195
  • 12
  • 39
  • 49
Nemanja Miljković
  • 997
  • 1
  • 6
  • 13
  • Drat, I suspected as much. Thanks for the pointer to twig macros. – Ken Cooper Aug 05 '11 at 20:32
  • Doesn't Assetic run first though? – Adam Lynch Aug 09 '12 at 10:05
  • I think this is a correct behavior: combining assets that have to be on a single page/route sin't smart I think. This is exactly the behaviour I desire. So, thank you for the solution on how to insert files only for a single route! :) – Aerendir Nov 25 '15 at 00:13