Skip to content

Complete rewrote FrameworkBundle config reference #4736

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions book/forms.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1584,13 +1584,17 @@ override the default error rendering for *all* fields, copy and customize the
.. index::
single: Forms; Global Theming

.. _book-forms-theming-global:

Global Form Theming
~~~~~~~~~~~~~~~~~~~

In the above example, you used the ``form_theme`` helper (in Twig) to "import"
the custom form fragments into *just* that form. You can also tell Symfony
to import form customizations across your entire project.

.. _book-forms-theming-twig:

Twig
....

Expand Down
2 changes: 2 additions & 0 deletions book/http_cache.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1099,6 +1099,8 @@ of the master page.
With ESI, the full page cache will be valid for 600 seconds, but the news
component cache will only last for 60 seconds.

.. _book-http_cache-fragments:

When using a controller reference, the ESI tag should reference the embedded
action as an accessible URL so the gateway cache can fetch it independently of
the rest of the page. Symfony takes care of generating a unique URL for any
Expand Down
2 changes: 2 additions & 0 deletions book/routing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,8 @@ URL Route Parameters
.. index::
single: Routing; Requirements

.. _book-routing-requirements:

Adding Requirements
~~~~~~~~~~~~~~~~~~~

Expand Down
2 changes: 2 additions & 0 deletions book/templating.rst
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,8 @@ Controllers are fast to execute and promote good code organization and reuse.
Of course, like all controllers, they should ideally be "skinny", meaning
that as much code as possible lives in reusable :doc:`services </book/service_container>`.

.. _book-templating-hinclude:

Asynchronous Content with hinclude.js
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
4 changes: 3 additions & 1 deletion book/translation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,9 @@ in your application.
Read :doc:`/cookbook/routing/service_container_parameters` to learn how to
avoid hardcoding the ``_locale`` requirement in all your routes.

Setting a default Locale
.. _book-translation-default-locale:

Setting a Default Locale
~~~~~~~~~~~~~~~~~~~~~~~~

What if the user's locale hasn't been determined? You can guarantee that a
Expand Down
16 changes: 8 additions & 8 deletions cookbook/profiler/storage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ uses MySQL as the storage for the profiler with a lifetime of one hour:
));

The :doc:`HttpKernel component </components/http_kernel/introduction>` currently
supports the following profiler storage implementations:
supports the following profiler storage drivers:

* :class:`Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage`
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\MemcachedProfilerStorage`
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\MemcacheProfilerStorage`
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\MongoDbProfilerStorage`
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\MysqlProfilerStorage`
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\RedisProfilerStorage`
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\SqliteProfilerStorage`
* file
* sqlite
* mysql
* mongodb
* memcache
* memcached
* redis
Loading