|
Revision 3493, 1.1 kB
(checked in by fabien, 5 years ago)
|
removed the DATABASE_NAME constants (closes #1433 - patch from chtito)
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
class sfPropelDataRetriever |
|---|
| 20 |
{ |
|---|
| 21 |
static public function retrieveObjects($class, $peerMethod = null) |
|---|
| 22 |
{ |
|---|
| 23 |
if (!$classPath = sfCore::getClassPath($class.'Peer')) |
|---|
| 24 |
{ |
|---|
| 25 |
throw new sfException(sprintf('Unable to find path for class "%s".', $class.'Peer')); |
|---|
| 26 |
} |
|---|
| 27 |
|
|---|
| 28 |
require_once($classPath); |
|---|
| 29 |
|
|---|
| 30 |
if (!$peerMethod) |
|---|
| 31 |
{ |
|---|
| 32 |
$peerMethod = 'doSelect'; |
|---|
| 33 |
} |
|---|
| 34 |
|
|---|
| 35 |
$classPeer = $class.'Peer'; |
|---|
| 36 |
|
|---|
| 37 |
if (!is_callable(array($classPeer, $peerMethod))) |
|---|
| 38 |
{ |
|---|
| 39 |
throw new sfException(sprintf('Peer method "%s" not found for class "%s"', $peerMethod, $classPeer)); |
|---|
| 40 |
} |
|---|
| 41 |
|
|---|
| 42 |
$objects = call_user_func(array($classPeer, $peerMethod), new Criteria()); |
|---|
| 43 |
|
|---|
| 44 |
return $objects; |
|---|
| 45 |
} |
|---|
| 46 |
} |
|---|