Skip to content

Commit

Permalink
changing a few orders of sections - mostly to move overridden after t…
Browse files Browse the repository at this point in the history
…he main options
  • Loading branch information
weaverryan committed Jun 28, 2015
1 parent cd8f49b commit f28ef78
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 40 deletions.
16 changes: 8 additions & 8 deletions reference/forms/types/integer.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ integers. By default, all non-integer values (e.g. 6.78) will round down
+-------------+-----------------------------------------------------------------------+
| Rendered as | ``input`` ``number`` field |
+-------------+-----------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+-----------------------------------------------------------------------+
| Options | - `grouping`_ |
| | - `precision`_ |
| | - `rounding_mode`_ |
+-------------+-----------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+-----------------------------------------------------------------------+
| Inherited | - `data`_ |
| options | - `disabled`_ |
| | - `empty_data`_ |
Expand All @@ -41,11 +41,6 @@ integers. By default, all non-integer values (e.g. 6.78) will round down
| Class | :class:`Symfony\\Component\\Form\\Extension\\Core\\Type\\IntegerType` |
+-------------+-----------------------------------------------------------------------+

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Field Options
-------------

Expand Down Expand Up @@ -74,6 +69,11 @@ on the :class:`Symfony\\Component\\Form\\Extension\\Core\\DataTransformer\\Integ
* ``IntegerToLocalizedStringTransformer::ROUND_CEILING`` Rounding mode
to round towards positive infinity.

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Inherited Options
-----------------

Expand Down
16 changes: 8 additions & 8 deletions reference/forms/types/money.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@ how the input and output of the data is handled.
+-------------+---------------------------------------------------------------------+
| Rendered as | ``input`` ``text`` field |
+-------------+---------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+---------------------------------------------------------------------+
| Options | - `currency`_ |
| | - `divisor`_ |
| | - `grouping`_ |
| | - `precision`_ |
+-------------+---------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+---------------------------------------------------------------------+
| Inherited | - `data`_ |
| options | - `disabled`_ |
| | - `empty_data`_ |
Expand All @@ -40,11 +40,6 @@ how the input and output of the data is handled.
| Class | :class:`Symfony\\Component\\Form\\Extension\\Core\\Type\\MoneyType` |
+-------------+---------------------------------------------------------------------+

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Field Options
-------------

Expand Down Expand Up @@ -91,6 +86,11 @@ you can modify this value. You probably won't need to do this unless,
for example, you want to round to the nearest dollar (set the precision
to ``0``).

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Inherited Options
-----------------

Expand Down
16 changes: 8 additions & 8 deletions reference/forms/types/number.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ that you want to use for your number.
+-------------+----------------------------------------------------------------------+
| Rendered as | ``input`` ``text`` field |
+-------------+----------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+----------------------------------------------------------------------+
| Options | - `grouping`_ |
| | - `precision`_ |
| | - `rounding_mode`_ |
+-------------+----------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+----------------------------------------------------------------------+
| Inherited | - `data`_ |
| options | - `disabled`_ |
| | - `empty_data`_ |
Expand All @@ -36,11 +36,6 @@ that you want to use for your number.
| Class | :class:`Symfony\\Component\\Form\\Extension\\Core\\Type\\NumberType` |
+-------------+----------------------------------------------------------------------+

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Field Options
-------------

Expand Down Expand Up @@ -82,6 +77,11 @@ option is a constant on the
to round towards "nearest neighbor" unless both neighbors are equidistant,
in which case round up.

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Inherited Options
-----------------

Expand Down
16 changes: 8 additions & 8 deletions reference/forms/types/percent.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ This field adds a percentage sign "``%``" after the input box.
+-------------+-----------------------------------------------------------------------+
| Rendered as | ``input`` ``text`` field |
+-------------+-----------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+-----------------------------------------------------------------------+
| Options | - `precision`_ |
| | - `type`_ |
+-------------+-----------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+-----------------------------------------------------------------------+
| Inherited | - `data`_ |
| options | - `disabled`_ |
| | - `empty_data`_ |
Expand All @@ -39,11 +39,6 @@ This field adds a percentage sign "``%``" after the input box.
| Class | :class:`Symfony\\Component\\Form\\Extension\\Core\\Type\\PercentType` |
+-------------+-----------------------------------------------------------------------+

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Field Options
-------------

Expand Down Expand Up @@ -75,6 +70,11 @@ object. The two "types" handle these two cases:
The raw value (``55``) is shown to the user and stored on your object.
Note that this only works for integer values.

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Inherited Options
-----------------

Expand Down
16 changes: 8 additions & 8 deletions reference/forms/types/text.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ The text field represents the most basic input text field.
+-------------+--------------------------------------------------------------------+
| Rendered as | ``input`` ``text`` field |
+-------------+--------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+--------------------------------------------------------------------+
| Inherited | - `data`_ |
| options | - `disabled`_ |
| | - `empty_data`_ |
Expand All @@ -25,16 +22,14 @@ The text field represents the most basic input text field.
| | - `required`_ |
| | - `trim`_ |
+-------------+--------------------------------------------------------------------+
| Overridden | - `compound`_ |
| options | |
+-------------+--------------------------------------------------------------------+
| Parent type | :doc:`form </reference/forms/types/form>` |
+-------------+--------------------------------------------------------------------+
| Class | :class:`Symfony\\Component\\Form\\Extension\\Core\\Type\\TextType` |
+-------------+--------------------------------------------------------------------+

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

Inherited Options
-----------------

Expand Down Expand Up @@ -70,3 +65,8 @@ The default value is ``''`` (the empty string).
.. include:: /reference/forms/types/options/required.rst.inc

.. include:: /reference/forms/types/options/trim.rst.inc

Overridden Options
------------------

.. include:: /reference/forms/types/options/compound_type.rst.inc

0 comments on commit f28ef78

Please sign in to comment.