Changeset 3787 for branches/0.9/manual

Show
Ignore:
Timestamp:
02/15/08 16:50:08 (11 months ago)
Author:
jwage
Message:

Merging r3565 to 0.9 branch.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.9/manual/docs/en/facade.txt

    r3129 r3787  
    2929 
    3030// Pass an array of classes to the above method and it will filter out the ones that are not Doctrine_Records 
    31 $models = Doctrine::getLoadedModels(array('User', 'Formatter', 'Doctrine_Record')); 
     31$models = Doctrine::filterInvalidModels(array('User', 'Formatter', 'Doctrine_Record')); 
    3232print_r($models); // would return array('User') because Formatter and Doctrine_Record are not Doctrine_Records 
    3333