-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[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
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
|
||
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; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
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