I need to modify default error messages of doctrine validations. How can I do this?
teşekkürler
CrazyJoe bir şekilde, doğru: Bazı zor iş olmadan mümkün değildir :-(
Eğer yeterince arama Ama, eğer sen bir yolunu bulabilir ;-)
With Doctrine 1.1, you model classes extend Doctrine_Record
.
That class defines this method :
/**
* Get the record error stack as a human readable string.
* Useful for outputting errors to user via web browser
*
* @return string $message
*/
public function getErrorStackAsString()
{
$errorStack = $this->getErrorStack();
if (count($errorStack)) {
$message = sprintf("Validation failed in class %s\n\n", get_class($this));
$message .= " " . count($errorStack) . " field" . (count($errorStack) > 1 ? 's' : null) . " had validation error" . (count($errorStack) > 1 ? 's' : null) . ":\n\n";
foreach ($errorStack as $field => $errors) {
$message .= " * " . count($errors) . " validator" . (count($errors) > 1 ? 's' : null) . " failed on $field (" . implode(", ", $errors) . ")\n";
}
return $message;
} else {
return false;
}
}
Bu mesajlar üretir yöntemidir; Gördüğünüz gibi, tam otomatik ve tüm :-( yapılandırılabilir değil
Still, thanks to OOP, we can overload that method in our Model classes...
Ancak, biraz daha temiz olması için, I would:
My_Doctrine_Record
, ki uzanır söylemek Doctrine_Record
My_Doctrine_Record
sınıf uzanacak.Bu bizim modeli sınıfların her biri içinde bu yöntemin tekrarını önlemek olacaktır; ve başka bir gün yararlı olabilir ...
Our My_Doctrine_Record::getErrorStackAsString
method can, of course, rely on a method of our model classes, to help generate the messages, with special customization for each model class.
Burada çalışan bir örnektir; mükemmellikten uzak, ama ne almak istediğinizi size rehberlik olabilir ;-)
First of all, the initialisations :
require_once '/usr/share/php/Doctrine/lib/Doctrine.php';
spl_autoload_register(array('Doctrine', 'autoload'));
$manager = Doctrine_Manager::getInstance();
$manager->setAttribute(Doctrine::ATTR_VALIDATE, Doctrine::VALIDATE_ALL);
$conn = Doctrine_Manager::connection('mysql://test:123456@localhost/test1');
Ben zaten uygulamada böyle bir şey var tahmin ediyorum ...
Next, our new My_Doctrine_Record
class :
class My_Doctrine_Record extends Doctrine_Record
{
public function getErrorStackAsString()
{
$errorStack = $this->getErrorStack();
if (count($errorStack)) {
$message = sprintf("BAD DATA in class %s :\n", get_class($this));
foreach ($errorStack as $field => $errors) {
$messageForField = $this->_getValidationFailed($field, $errors);
if ($messageForField === null) {
// No custom message for this case => we use the default one.
$message .= " * " . count($errors) . " validator" . (count($errors) > 1 ? 's' : null) . " failed on $field (" . implode(", ", $errors) . ")\n";
} else {
$message .= " * " . $messageForField;
}
}
return $message;
} else {
return false;
}
}
protected function _getValidationFailed($field, $errors) {
return null;
}
}
Sen getErrorStackAsString
yöntemi Doktrini tarafından sağlanan biri tarafından yapılır ne ilham olduğunu fark edeceksiniz - bu normal görünüyor, ben ^ ^ derdim
Fark edilmesi gereken bir diğer şey:
getValidationFailed
yöntemini tanımlar ve çağrılarnull
return_getValidationFailed
yöntemi aşırı olabilir şeyler ;-)
And now, my Model class :
class Test extends My_Doctrine_Record
{
protected function _getValidationFailed($field, $errors) {
switch ($field) {
case 'name':
return "You entered wrong data from 'name' field.\n Errors are for '"
. implode("', '", $errors) . "'\n";
break;
// other fields ?
default:
return null;
}
}
public function setTableDefinition()
{
$this->setTableName('test');
$this->hasColumn('id', 'integer', 4, array(
'type' => 'integer',
'length' => 4,
'unsigned' => 0,
'primary' => true,
'autoincrement' => true,
));
$this->hasColumn('name', 'string', 32, array(
'type' => 'string',
'length' => 32,
'fixed' => false,
'notnull' => true,
'email' => true,
));
$this->hasColumn('value', 'string', 128, array(
'type' => 'string',
'length' => 128,
'fixed' => false,
'notnull' => true,
'htmlcolor' => true,
));
$this->hasColumn('date_field', 'integer', 4, array(
'type' => 'timestamp',
'notnull' => true,
));
}
}
Bu My_Doctrine_Record
uzanır, ve benim modeli name
alanında doğrulamaları hataları ile ilgilenen bir _getValidationFailed
yöntemini tanımlar.
Now, let's suppose I do that to load a record :
$test = Doctrine::getTable('Test')->find(1);
var_dump($test->toArray());
"Kötü" değerleri kurma, bunu değiştirmek için deneyelim:
$test->name = (string)time();
$test->value = 'glop';
try {
$test->save();
} catch (Doctrine_Validator_Exception $e) {
echo '<pre>';
echo $e->getMessage();
echo '</pre>';
die;
}
Her iki name
ve value
alanlar bizim doğrulamaları yöntemlerle geçmesi ve bu hata iletisi oluşturmak edeceğiz, tamam değil ... Yani:
BAD DATA in class Test :
* You entered wrong data from 'name' field.
Errors are for 'email'
* 1 validator failed on value (htmlcolor)
Sizin için mesaj görebilirsiniz "name
" özelleştirilmiş oldu, ve için bir "value
" varsayılan Doktrin şey geliyor.
So, to conclude : not easy, but do-able ;-)
And, now, it's up to you to use this as a guide to the exact solution to your problem :-)
It will need some more coding, I think... But you're not far away from the real deal !
Eğlenin!