Skip to content

Commit 7c1507c

Browse files
committed
feature #5298 Completed framework config (WouterJ)
This PR was merged into the 2.3 branch. Discussion ---------- Completed framework config This PR only changes and adds new configuration, without moving all things around. This will things a lot easier to diff and see where things have gone wrong. I'll thouroughly review this PR and merge then. Replaces #4736 | Q | A | --- | --- | Doc fix? | yes | New docs? | yes | Applies to | 2.3+ | Fixed tickets | #4439, #3586 Commits ------- 54e8b0a Let docbot review reference f223643 Apply some of Ryan's suggestions 7e45e8f Completed framework config reference
2 parents 746eee5 + 54e8b0a commit 7c1507c

File tree

7 files changed

+902
-143
lines changed

7 files changed

+902
-143
lines changed

book/forms.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1591,13 +1591,17 @@ override the default error rendering for *all* fields, copy and customize the
15911591
.. index::
15921592
single: Forms; Global Theming
15931593

1594+
.. _book-forms-theming-global:
1595+
15941596
Global Form Theming
15951597
~~~~~~~~~~~~~~~~~~~
15961598

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

1603+
.. _book-forms-theming-twig:
1604+
16011605
Twig
16021606
....
16031607

book/http_cache.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1157,6 +1157,8 @@ of the master page.
11571157
With ESI, the full page cache will be valid for 600 seconds, but the news
11581158
component cache will only last for 60 seconds.
11591159

1160+
.. _book-http_cache-fragments:
1161+
11601162
When using a controller reference, the ESI tag should reference the embedded
11611163
action as an accessible URL so the gateway cache can fetch it independently of
11621164
the rest of the page. Symfony takes care of generating a unique URL for any

book/routing.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,8 @@ URL Route Parameters
547547
.. index::
548548
single: Routing; Requirements
549549

550+
.. _book-routing-requirements:
551+
550552
Adding Requirements
551553
~~~~~~~~~~~~~~~~~~~
552554

book/templating.rst

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

691+
.. _book-templating-hinclude:
692+
691693
Asynchronous Content with hinclude.js
692694
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
693695

book/translation.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,9 @@ in your application.
526526
.. index::
527527
single: Translations; Fallback and default locale
528528

529-
Setting a default Locale
529+
.. _book-translation-default-locale:
530+
531+
Setting a Default Locale
530532
~~~~~~~~~~~~~~~~~~~~~~~~
531533

532534
What if the user's locale hasn't been determined? You can guarantee that a

cookbook/profiler/storage.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ uses MySQL as the storage for the profiler with a lifetime of one hour:
5858
));
5959
6060
The :doc:`HttpKernel component </components/http_kernel/introduction>` currently
61-
supports the following profiler storage implementations:
61+
supports the following profiler storage drivers:
6262

63-
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\FileProfilerStorage`
64-
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\MemcachedProfilerStorage`
65-
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\MemcacheProfilerStorage`
66-
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\MongoDbProfilerStorage`
67-
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\MysqlProfilerStorage`
68-
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\RedisProfilerStorage`
69-
* :class:`Symfony\\Component\\HttpKernel\\Profiler\\SqliteProfilerStorage`
63+
* file
64+
* sqlite
65+
* mysql
66+
* mongodb
67+
* memcache
68+
* memcached
69+
* redis

0 commit comments

Comments
 (0)