Changeset 7229
- Timestamp:
- 01/30/08 18:44:21 (10 months ago)
- Files:
-
- plugins/sfPropelImpersonatorPlugin/trunk/README (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfPropelImpersonatorPlugin/trunk/README
r7218 r7229 100 100 Result schema is a list of parameters that may be: 101 101 102 *a Propel object class name (i.e 'Article')103 *a custom field in the form: array('creole_type', 'column_name_for_object_population')102 - a Propel object class name (i.e 'Article') 103 - a custom field in the form: array('creole_type', 'column_name_for_object_population') 104 104 105 105 Of course, you can mix both, but links will be present between objects if and only if … … 121 121 122 122 $c = new Criteria(); 123 $peer->addSelectColumns($c); 123 124 $c->addJoin(ArticlePeer::ID, ArticleCommentPeer::ARTICLE_ID, Criteria::LEFT_JOIN); 124 125 $c->addJoin(ArticlePeer::AUTHOR_ID, AuthorPeer::ID, Criteria::INNER_JOIN);