<?php
class IndexController extends Zend_Controller_Action
{
public function init()
{
/* Initialize action controller here */
}
public function indexAction()
{
$this->getHelper('ViewRenderer')->setNoRender(true);
$values = array('foo' => 'bar');
$this->getHelper('json')->sendJson($values);
}
}
Leave a Reply