Listing 7.10. | |
| ROZDZIAŁ: | 7. Bazy danych |
| TXT: | listing-07-10.txt |
<?php
class Actions extends ActionsBase
{
public function execute_list()
{
$szczyty = Doctrine_Query::create()->from('Szczyt')->fetchArray();
$this->set('szczyty', $szczyty);
}
}