Wednesday, June 22, 2011

Setting Page Titles

Setting in action:
$this->getResponse()->setTitle($shopInfo->getName());

Retrieving in template:
$sf_response->getTitle();

Tuesday, June 21, 2011

Query and Call Database

$result = Doctrine::getTable('Shop')->findBySlug($name);

 public function findBySlug($name)
 {
  return Doctrine::getTable('Shop')
     ->createQuery('s')
     ->where('s.slug = ?', $name)
     ->fetchOne();
 }