File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Filter options
Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ Authorization (i.e. Denying Access)
75
75
Symfony gives you several ways to enforce authorization, including the ``access_control ``
76
76
configuration in :doc: `security.yml </reference/configuration/security >` the
77
77
:ref: `@Security annotation <best-practices-security-annotation >` and using
78
- :ref: `isGranted <best-practices-directy -isGranted >` on the ``security.context ``
78
+ :ref: `isGranted <best-practices-directly -isGranted >` on the ``security.context ``
79
79
service directly.
80
80
81
81
.. best-practice ::
@@ -206,7 +206,7 @@ Now you can reuse this method both in the template and in the security expressio
206
206
<a href=""> ... </a>
207
207
{% endif %}
208
208
209
- .. _best-practices-directy -isGranted :
209
+ .. _best-practices-directly -isGranted :
210
210
211
211
Checking Permissions without @Security
212
212
--------------------------------------
@@ -352,5 +352,7 @@ develop :doc:`your own user provider </cookbook/security/custom_provider>` and
352
352
353
353
.. _`ParamConverter` : http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/converters.html
354
354
.. _`@Security annotation` : http://symfony.com/doc/current/bundles/SensioFrameworkExtraBundle/annotations/security.html
355
+ .. _`security voter` : http://symfony.com/doc/current/cookbook/security/voters_data_permission.html
356
+ .. _`ACL's` : http://symfony.com/doc/current/cookbook/security/acl.html
355
357
.. _`expression` : http://symfony.com/doc/current/components/expression_language/introduction.html
356
358
.. _`FOSUserBundle` : https://github.com/FriendsOfSymfony/FOSUserBundle
Original file line number Diff line number Diff line change @@ -264,7 +264,7 @@ from the command line, you need to overwrite the HelperSet used by the command::
264
264
265
265
$dialog = $command->getHelper('dialog');
266
266
$dialog->setInputStream($this->getInputStream("Test\n"));
267
- // Equals to a user inputing "Test" and hitting ENTER
267
+ // Equals to a user inputting "Test" and hitting ENTER
268
268
// If you need to enter a confirmation, "yes\n" will work
269
269
270
270
$commandTester->execute(array('command' => $command->getName()));
Original file line number Diff line number Diff line change @@ -226,7 +226,7 @@ Pluralization
226
226
-------------
227
227
228
228
Message pluralization is a tough topic as the rules can be quite complex. For
229
- instance, here is the mathematic representation of the Russian pluralization
229
+ instance, here is the mathematical representation of the Russian pluralization
230
230
rules::
231
231
232
232
(($number % 10 == 1) && ($number % 100 != 11))
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ Symfony Twig Extensions
8
8
9
9
Twig is the default template engine for Symfony. By itself, it already contains
10
10
a lot of built-in functions, filters, tags and tests (learn more about them
11
- from the the `Twig Reference `_).
11
+ from the `Twig Reference `_).
12
12
13
13
Symfony adds more custom extensions on top of Twig to integrate some components
14
14
into the Twig templates. You can find more information about the custom
You can’t perform that action at this time.
0 commit comments