Ben bir proje üzerinde Zend Framework ve Doctrine kullanıyorum ve herkes Zend_Form ile Doktrini doğrulaması entegre etmek için iyi bir yol önerebilirsiniz merak ediyordum. Ben kod tekrarından kaçınmak için çalışıyorum.
If you are satisfied with aggregating the errors for your form you can do it in the following way: - Make a Zend_Form without validators - On submit, make a Doctrine object and call isValid() - If not valid, don't store, but show form again with an error
What I would recommend you however, is to either - Write both the validators for your Zend_Form and your model. - Write Validators for your Zend_Form that take a Doctrine Model and field as input and then validate the stuff against your model
Ben ikinci seçenek Zend Framework içine bile eklenmesi için kullanışlı, çok genel bir kütüphane olabilir varsayalım. Bu doğru bir şekilde yazmak için ancak sıkıcı.