$this->getResponse()->setTitle($shopInfo->getName());
$sf_response->getTitle();
$result = Doctrine::getTable('Shop')->findBySlug($name); public function findBySlug($name) { return Doctrine::getTable('Shop') ->createQuery('s') ->where('s.slug = ?', $name) ->fetchOne(); }