Listing 11.16. | |
| ROZDZIAŁ: | 11. Relacje 1:n |
| TXT: | listing-11-16.txt |
public function execute_show()
{
if (
isset($_GET['slug']) &&
str_ivslug($_GET['slug']) &&
($kontynent = Doctrine::getTable('Kontynent')->findOneBySlug($_GET['slug']))
) {
$this->set('kontynent', $kontynent);
} else {
$this->execute_404();
}
}