Changeset 3787 for branches/0.9/manual
- Timestamp:
- 02/15/08 16:50:08 (11 months ago)
- Files:
-
- 1 modified
-
branches/0.9/manual/docs/en/facade.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.9/manual/docs/en/facade.txt
r3129 r3787 29 29 30 30 // 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')); 32 32 print_r($models); // would return array('User') because Formatter and Doctrine_Record are not Doctrine_Records 33 33