class Image in Plug 7
@Target({"PROPERTY", "METHOD", "ANNOTATION"})
@author Benjamin Dulau <benjamin.dulau@gmail.com> @author Bernhard Schussek <bschussek@gmail.com>
@api
Hierarchy
- class \Symfony\Component\Validator\Constraint
Expanded class hierarchy of Image
1 file declares its use of Image
- ImageValidatorTest.php in lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Tests/ Constraints/ ImageValidatorTest.php
File
- lib/
Symfony/ validator/ Symfony/ Component/ Validator/ Constraints/ Image.php, line 23
Namespace
Symfony\Component\Validator\ConstraintsView source
class Image extends File {
// Don't reuse values used in File
const SIZE_NOT_DETECTED_ERROR = 10;
const TOO_WIDE_ERROR = 11;
const TOO_NARROW_ERROR = 12;
const TOO_HIGH_ERROR = 13;
const TOO_LOW_ERROR = 14;
const RATIO_TOO_BIG_ERROR = 15;
const RATIO_TOO_SMALL_ERROR = 16;
const SQUARE_NOT_ALLOWED_ERROR = 17;
const LANDSCAPE_NOT_ALLOWED_ERROR = 18;
const PORTRAIT_NOT_ALLOWED_ERROR = 19;
// Include the mapping from the base class
protected static $errorNames = array(
self::NOT_FOUND_ERROR => 'NOT_FOUND_ERROR',
self::NOT_READABLE_ERROR => 'NOT_READABLE_ERROR',
self::EMPTY_ERROR => 'EMPTY_ERROR',
self::TOO_LARGE_ERROR => 'TOO_LARGE_ERROR',
self::INVALID_MIME_TYPE_ERROR => 'INVALID_MIME_TYPE_ERROR',
self::SIZE_NOT_DETECTED_ERROR => 'SIZE_NOT_DETECTED_ERROR',
self::TOO_WIDE_ERROR => 'TOO_WIDE_ERROR',
self::TOO_NARROW_ERROR => 'TOO_NARROW_ERROR',
self::TOO_HIGH_ERROR => 'TOO_HIGH_ERROR',
self::TOO_LOW_ERROR => 'TOO_LOW_ERROR',
self::RATIO_TOO_BIG_ERROR => 'RATIO_TOO_BIG_ERROR',
self::RATIO_TOO_SMALL_ERROR => 'RATIO_TOO_SMALL_ERROR',
self::SQUARE_NOT_ALLOWED_ERROR => 'SQUARE_NOT_ALLOWED_ERROR',
self::LANDSCAPE_NOT_ALLOWED_ERROR => 'LANDSCAPE_NOT_ALLOWED_ERROR',
self::PORTRAIT_NOT_ALLOWED_ERROR => 'PORTRAIT_NOT_ALLOWED_ERROR',
);
public $mimeTypes = 'image/*';
public $minWidth;
public $maxWidth;
public $maxHeight;
public $minHeight;
public $maxRatio;
public $minRatio;
public $allowSquare = true;
public $allowLandscape = true;
public $allowPortrait = true;
// The constant for a wrong MIME type is taken from the parent class.
public $mimeTypesMessage = 'This file is not a valid image.';
public $sizeNotDetectedMessage = 'The size of the image could not be detected.';
public $maxWidthMessage = 'The image width is too big ({{ width }}px). Allowed maximum width is {{ max_width }}px.';
public $minWidthMessage = 'The image width is too small ({{ width }}px). Minimum width expected is {{ min_width }}px.';
public $maxHeightMessage = 'The image height is too big ({{ height }}px). Allowed maximum height is {{ max_height }}px.';
public $minHeightMessage = 'The image height is too small ({{ height }}px). Minimum height expected is {{ min_height }}px.';
public $maxRatioMessage = 'The image ratio is too big ({{ ratio }}). Allowed maximum ratio is {{ max_ratio }}.';
public $minRatioMessage = 'The image ratio is too small ({{ ratio }}). Minimum ratio expected is {{ min_ratio }}.';
public $allowSquareMessage = 'The image is square ({{ width }}x{{ height }}px). Square images are not allowed.';
public $allowLandscapeMessage = 'The image is landscape oriented ({{ width }}x{{ height }}px). Landscape oriented images are not allowed.';
public $allowPortraitMessage = 'The image is portrait oriented ({{ width }}x{{ height }}px). Portrait oriented images are not allowed.';
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Constraint:: |
public | property | Domain-specific data attached to a constraint | |
Constraint:: |
public | function | Adds the given group if this constraint is in the Default group. | 1 |
Constraint:: |
constant | Marks a constraint that can be put onto classes. | ||
Constraint:: |
constant | The name of the group given to all constraints with no explicit group. | ||
Constraint:: |
public | function | Returns the name of the default option. | 15 |
Constraint:: |
public static | function | Returns the name of the given error code. | |
Constraint:: |
public | function | Returns the name of the required options. | 7 |
Constraint:: |
public | function | Returns whether the constraint can be put onto classes, properties or both. | 11 |
Constraint:: |
constant | Marks a constraint that can be put onto properties. | ||
Constraint:: |
public | function | Returns the name of the class that validates this constraint. | 1 |
Constraint:: |
public | function | Returns the value of a lazily initialized option. | |
Constraint:: |
public | function | Sets the value of a lazily initialized option. | |
Constraint:: |
public | function | Optimizes the serialized value to minimize storage space. | |
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
public | property | ||
File:: |
constant | |||
File:: |
constant | |||
File:: |
constant | |||
File:: |
constant | |||
File:: |
constant | |||
File:: |
public | function |
Initializes the constraint with options. Overrides Constraint:: |
|
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
protected static | property |
Maps error codes to the names of their constants Overrides File:: |
|
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property |
Overrides File:: |
|
Image:: |
public | property |
Overrides File:: |
|
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
public | property | ||
Image:: |
constant | |||
Image:: |
constant | |||
Image:: |
constant | |||
Image:: |
constant | |||
Image:: |
constant | |||
Image:: |
constant | |||
Image:: |
constant | |||
Image:: |
constant | |||
Image:: |
constant | |||
Image:: |
constant |