Listing 13.20. | |
| ROZDZIAŁ: | 13. Zagadnienia dodatkowe dotyczące warstw M oraz V |
| TXT: | listing-13-20.txt |
public function get($prop)
{
if ($prop == 'aparats') {
$q = Doctrine_Query::create()
->from('Aparat a')
->where('a.producent_id = ?', $this['producent_id'])
->orderBy('a.model');
return $q->execute(array(), Doctrine::HYDRATE_RECORD);
} else {
return parent::get($prop);
}
}