If you liked what you've learned so far, dive in!
Subscribe to get access to this tutorial plus
video, code and script downloads.
Things are still too ugly. I'll copy some CSS and image files I wrote up
after the last chapter. We could put these in the web/
directory - it
is publicly accessible afterall.
But there's a trick I want to show you, so let's copy them to a new Resources/public
directory in EventBundle
. Get these files by downloading the code for this screencast
and looking in the resources
directory. I already downloaded and copied that
directory into my project for simplicity:
cp -r resources/public src/Yoda/EventBundle/Resources
Now we just need to add some link
tags to base.html.twig
. In fact,
the layout already has a stylesheets
block - let's put the link tags
there:
{# app/Resources/views/base.html.twig #}
{# ... #}
{% block stylesheets %}
<link rel="stylesheet" href="???" />
{% endblock %}
Why put them in a block? I'll show you exactly why in Episode 2, but basically this will let us include extra CSS files on only one page. The page-specific CSS file will show up after whatever we have in this block.
Wait a second - what should we put in the href
? Only things in the web/
directory are web-accessible, and these aren't in there. What was I thinking?
Ok, so Symfony has a dead-simple trick here. Actually, it's console again,
with its assets:install
command. Get some help info about it first:
php app/console assets:install --help
As it says, the command copies the Resources/public
directory from each
bundle and moves it to a web/bundles
directory. This little trick makes
our bundle assets public!
And unless you're on windows, run this with the --symlink
option: it
creates a symbolic link instead of copying the directory:
php app/console assets:install --symlink
Now, our bundle's Resources/public
directory shows up as web/bundles/event
.
There's even a few core bundles that use this trick.
There's a secret. When we run php composer.phar install
, the assets:install
command is run automatically at the end. But it's not black-magic, there's
just a scripts
key in composer.json
that tells it to do this and
a few other things.
The uncool part about this is that it runs the command without the --symlink
option. When the directories are copied instead of symlinked, testing CSS
changes is a huge pain.
Edit the bottom of the composer.json
script to activate the symlink option:
"extra": {
" ... "
"symfony-assets-install": "symlink",
},
The extra
key is occasionally used in random ways like this. If you ever
need to do anything else here, the README of some library will tell you.
Ok, now lets finish up the link
tags:
{# app/Resources/views/base.html.twig #}
{# ... #}
{% block stylesheets %}
<link rel="stylesheet" href="{{ asset('bundles/event/css/event.css') }}" />
<link rel="stylesheet" href="{{ asset('bundles/event/css/events.css') }}" />
<link rel="stylesheet" href="{{ asset('bundles/event/css/main.css') }}" />
{% endblock %}
This is just the plain web path, except for the Twig asset function. This function doesn't do much, but it will make putting our assets on a CDN really easy later. So whenever you have a path to a CSS, JavaScript or image file, wrap it with this.
This is cool. BUT, I want to give you a sneap peek of Assetic - a library that integrates with Symfony and lets you combine and process CSS and JS files:
{# app/Resources/views/base.html.twig #}
{# ... #}
{% block stylesheets %}
{% stylesheets
'bundles/event/css/event.css'
'bundles/event/css/events.css'
'bundles/event/css/main.css'
filter='cssrewrite'
%}
<link rel="stylesheet" href="{{ asset_url }}" />
{% endstylesheets %}
{% endblock %}
When we refresh, everything still looks the same. BUT, we've laid the foundation for being able to do things like use SASS and combining everything into 1 file for speed. We talk about Assetic more in Episode 4.
"Houston: no signs of life"
Start the conversation!
// composer.json
{
"require": {
"php": ">=5.3.3",
"symfony/symfony": "~2.4", // v2.4.2
"doctrine/orm": "~2.2,>=2.2.3", // v2.4.2
"doctrine/doctrine-bundle": "~1.2", // v1.2.0
"twig/extensions": "~1.0", // v1.0.1
"symfony/assetic-bundle": "~2.3", // v2.3.0
"symfony/swiftmailer-bundle": "~2.3", // v2.3.5
"symfony/monolog-bundle": "~2.4", // v2.5.0
"sensio/distribution-bundle": "~2.3", // v2.3.4
"sensio/framework-extra-bundle": "~3.0", // v3.0.0
"sensio/generator-bundle": "~2.3", // v2.3.4
"incenteev/composer-parameter-handler": "~2.0", // v2.1.0
"doctrine/doctrine-fixtures-bundle": "~2.2.0" // v2.2.0
}
}