respect-validation/library/Respect/Validation/Exceptions/AttributeException.php

19 lines
493 B
PHP
Raw Normal View History

2010-12-06 02:17:12 +01:00
<?php
namespace Respect\Validation\Exceptions;
class AttributeException extends AbstractRelatedException
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::NOT_PRESENT => '%1$s must be present',
self::INVALID => 'Attribute %2$s must be valid on %1$s',
2010-12-06 02:17:12 +01:00
);
public function chooseTemplate($name, $attributeName, $hasTheAttribute)
2010-12-06 02:17:12 +01:00
{
2011-02-07 02:12:41 +01:00
return $hasTheAttribute ? static::INVALID : static::NOT_PRESENT;
2010-12-06 02:17:12 +01:00
}
}