Details |
Letzte Änderung |
Log anzeigen
| RSS feed
| Revision |
Autor |
Zeilennr. |
Zeile |
| 1 |
lars |
1 |
public function executeIndex(sfWebRequest $request)
|
|
|
2 |
{
|
|
|
3 |
<?php if (isset($this->params['with_propel_route']) && $this->params['with_propel_route']): ?>
|
|
|
4 |
$this-><?php echo $this->getPluralName() ?> = $this->getRoute()->getObjects();
|
|
|
5 |
<?php else: ?>
|
|
|
6 |
$this-><?php echo $this->getPluralName() ?> = <?php echo constant($this->getModelClass().'::PEER') ?>::doSelect(new Criteria());
|
|
|
7 |
<?php endif; ?>
|
|
|
8 |
}
|