respect-validation/library/Exceptions/AttributeException.php

24 lines
726 B
PHP
Raw Normal View History

2010-12-06 02:17:12 +01:00
<?php
namespace Respect\Validation\Exceptions;
class AttributeException extends AbstractNestedException
2010-12-06 02:17:12 +01:00
{
2011-02-07 02:12:41 +01:00
const NOT_PRESENT = 0;
const INVALID = 1;
2010-12-06 02:17:12 +01:00
public static $defaultTemplates = array(
self::MODE_DEFAULT => array(
self::NOT_PRESENT => 'Attribute {{name}} must be present',
self::INVALID => 'Attribute {{name}} must be valid',
),
self::MODE_NEGATIVE => array(
self::NOT_PRESENT => 'Attribute {{name}} must not be present',
self::INVALID => 'Attribute {{name}} must not validate',
),
2010-12-06 02:17:12 +01:00
);
public function chooseTemplate()
2010-12-06 02:17:12 +01:00
{
return $this->getParam('hasReference') ? static::INVALID : static::NOT_PRESENT;
2010-12-06 02:17:12 +01:00
}
}