Skip to content

[reference][constraints] Adding documentation for the Isbn validation. #2528

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

Merged
merged 4 commits into from
May 3, 2013
Merged
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
1 change: 1 addition & 0 deletions reference/constraints.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Validation Constraints Reference

constraints/CardScheme
constraints/Luhn
constraints/Isbn

constraints/Callback
constraints/All
Expand Down
136 changes: 136 additions & 0 deletions reference/constraints/Isbn.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
Isbn
====

.. versionadded:: New in version 2.3:
The Isbn validation were added in Symfony 2.3.

This constraint permits that a ISBN (International Standard Book Numbers)
number is either a valid ISBN-10, a valid ISBN-13 code or both on a value.

+----------------+----------------------------------------------------------------------+
| Applies to | :ref:`property or method<validation-property-target>` |
+----------------+----------------------------------------------------------------------+
| Options | - `isbn10Message`_ |
| | - `isbn13Message`_ |
| | - `bothIsbnMessage`_ |
| | - `isbn10`_ |
| | - `isbn13`_ |
+----------------+----------------------------------------------------------------------+
| Class | :class:`Symfony\\Component\\Validator\\Constraints\\Isbn` |
+----------------+----------------------------------------------------------------------+
| Validator | :class:`Symfony\\Component\\Validator\\Constraints\\IsbnValidator` |
+----------------+----------------------------------------------------------------------+

Basic Usage
-----------

To use the ``Isbn`` validator, simply apply it to a property or method
on an object that will contain a ISBN number.

.. configuration-block::

.. code-block:: yaml

# src/Acme/BookcaseBunlde/Resources/config/validation.yml
Acme\BookcaseBunlde\Entity\Book:
properties:
isbn:
- Isbn:
isbn10: true
isbn13: true
bothIsbnMessage: This value is neither a valid ISBN-10 nor a valid ISBN-13.

.. code-block:: xml

<!-- src/Acme/BookcaseBunlde/Resources/config/validation.xml -->
<class name="Acme\BookcaseBunlde\Entity\Book">
<property name="isbn">
<constraint name="Isbn">
<option name="isbn10">true</option>
<option name="isbn13">true</option>
<option name="bothIsbnMessage">This value is neither a valid ISBN-10 nor a valid ISBN-13.</option>
</constraint>
</property>
</class>

.. code-block:: php-annotations

// src/Acme/BookcaseBunlde/Entity/Book.php
use Symfony\Component\Validator\Constraints as Assert;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you forgot the namespace statement: namespace Acme\DemoBundle\Entity


class Book
{
/**
* @Assert\Isbn(
* isbn10 = true,
* isbn13 = true,
* bothIsbnMessage = "This value is neither a valid ISBN-10 nor a valid ISBN-13."
* )
*/
protected $isbn;
}

.. code-block:: php

// src/Acme/BookcaseBunlde/Entity/Book.php
namespace Acme\BookcaseBunlde\Entity;

use Symfony\Component\Validator\Mapping\ClassMetadata;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

missing namespace here too

use Symfony\Component\Validator\Constraints as Assert;

class Book
{
protected $isbn;

public static function loadValidatorMetadata(ClassMetadata $metadata)
{
$metadata->addPropertyConstraint('isbn', new Assert\Isbn(array(
'isbn10' => true,
'isbn13' => true,
'bothIsbnMessage' => 'This value is neither a valid ISBN-10 nor a valid ISBN-13.'
)));
}
}

Available Options
-----------------

isbn10Message
~~~~~~~~~~~~~

**type**: ``string`` **default**: ``This value is not a valid ISBN-10.``

The message that will be shown if the option isbn10 is true
and the given value does not pass the ISBN-10 check.

isbn13Message
~~~~~~~~~~~~~

**type**: ``string`` **default**: ``This value is not a valid ISBN-13.``

The message that will be shown if the option isbn13 is true
and the given value does not pass the ISBN-13 check.

bothIsbnMessage
~~~~~~~~~~~~~~~

**type**: ``string`` **default**: ``This value is neither a valid ISBN-10 nor a valid ISBN-13.``

The message that will be shown if the options (isbn10, isbn13) is true
and the given value does not pass the ISBN-13 nor ISBN-13 check.

isbn10
~~~~~~

**type**: ``boolean`` [:ref:`default option<validation-default-option>`]

If this required option is set to ``true`` the constraint will check
if the code is a valid ISBN-10 code.

isbn13
~~~~~~

**type**: ``boolean`` [:ref:`default option<validation-default-option>`]

If this required option is set to ``true`` the constraint will check
if the code is a valid ISBN-13 code.
1 change: 1 addition & 0 deletions reference/constraints/map.rst.inc
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ Financial Constraints

* :doc:`CardScheme </reference/constraints/CardScheme>`
* :doc:`Luhn </reference/constraints/Luhn>`
* :doc:`Isbn </reference/constraints/Isbn>`

Other Constraints
~~~~~~~~~~~~~~~~~
Expand Down