Development

Changeset 7229

You must first sign up to be able to contribute.

Changeset 7229

Show
Ignore:
Timestamp:
01/30/08 18:44:21 (10 months ago)
Author:
hartym
Message:

probably, that was destinated to plugin trunk

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfPropelImpersonatorPlugin/trunk/README

    r7218 r7229  
    100100Result schema is a list of parameters that may be: 
    101101 
    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') 
    104104 
    105105Of course, you can mix both, but links will be present between objects if and only if 
     
    121121 
    122122$c = new Criteria(); 
     123$peer->addSelectColumns($c); 
    123124$c->addJoin(ArticlePeer::ID, ArticleCommentPeer::ARTICLE_ID, Criteria::LEFT_JOIN); 
    124125$c->addJoin(ArticlePeer::AUTHOR_ID, AuthorPeer::ID, Criteria::INNER_JOIN);