Répertoire de codes source
Zend Framework Db Table ORM | |
---|---|
déposé par zsamer le 26/09/2008 nombre de visites : 5640 edité le 26/09/2008 par zsamer |
<a href="http://code.google.com/p/zend-framework-orm/">Zend Framework Db Table ORM</a> is a project that aims to give greater ORM functionality to Zend_Db_Table Relationships.
Example: |
$contentModel = new Content(); $categoryModel = new Category(); $category = $categoryModel->createRow(); $category->setName('New Category 6'); $content = $contentModel->createRow(); $content->setTitle('Title 10'); $content->setContent('Content 10'); $content->setIsActive(1); $content2 = $contentModel->createRow(); $content2->setTitle('Title 11'); $content2->setContent('Content 11'); $content2->setIsActive(0); $category->addContent($content); $category->addContent($content2); $category->save(); |
|