Skip to content

Commit a0607d1

Browse files
committed
Merge pull request #1610 from richardmiller/updating_cookbook_titles
Updated some cookbook article titles to be more in keeping with the rest
2 parents e940a07 + 2bb8875 commit a0607d1

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

cookbook/bundles/best_practices.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. index::
22
single: Bundle; Best practices
33

4-
Bundle Structure and Best Practices
5-
===================================
4+
How to use Best Practices for Structuring Bundles
5+
=================================================
66

77
A bundle is a directory that has a well-defined structure and can host anything
88
from classes to controllers and web resources. Even if bundles are very

cookbook/doctrine/common_extensions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. index::
22
single: Doctrine; Common extensions
33

4-
Doctrine Extensions: Timestampable, Sluggable, Translatable, etc.
5-
=================================================================
4+
How to use Doctrine Extensions: Timestampable, Sluggable, Translatable, etc.
5+
============================================================================
66

77
Doctrine2 is very flexible, and the community has already created a series
88
of useful Doctrine extensions to help you with common entity-related tasks.

cookbook/doctrine/custom_dql_functions.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. index::
22
single: Doctrine; Custom DQL functions
33

4-
Registering Custom DQL Functions
5-
================================
4+
How to Register Custom DQL Functions
5+
====================================
66

77
Doctrine allows you to specify custom DQL functions. For more information
88
on this topic, read Doctrine's cookbook article "`DQL User Defined Functions`_".

cookbook/form/data_transformers.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. index::
22
single: Form; Data transformers
33

4-
Using Data Transformers
5-
=======================
4+
How to use Data Transformers
5+
============================
66

77
You'll often find the need to transform the data the user entered in a form into
88
something else for use in your program. You could easily do this manually in your

cookbook/security/acl.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. index::
22
single: Security; Access Control Lists (ACLs)
33

4-
Access Control Lists (ACLs)
5-
===========================
4+
How to use Access Control Lists (ACLs)
5+
======================================
66

77
In complex applications, you will often face the problem that access decisions
88
cannot only be based on the person (``Token``) who is requesting access, but

cookbook/security/acl_advanced.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. index::
22
single: Security; Advanced ACL concepts
33

4-
Advanced ACL Concepts
5-
=====================
4+
How to use Advanced ACL Concepts
5+
================================
66

77
The aim of this chapter is to give a more in-depth view of the ACL system, and
88
also explain some of the design decisions behind it.

cookbook/templating/global_variables.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. index::
22
single: Templating; Global variables
33

4-
Injecting variables into all templates (i.e. Global Variables)
5-
==============================================================
4+
How to Inject Variables into all Templates (i.e. Global Variables)
5+
==================================================================
66

77
Sometimes you want a variable to be accessible to all the templates you use.
88
This is possible inside your ``app/config/config.yml`` file:

0 commit comments

Comments
 (0)