HosipLan

Untitled

Dec 6th, 2011
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.30 KB | None | 0 0
  1.  
  2. /**
  3.  * @throws Nette\Application\AbortException
  4.  */
  5. public function updateTree($data)
  6. {
  7.     $this->sendResponse(new Nette\Application\Responses\JsonResponse($data));
  8. }
  9.  
  10.  
  11. public function actionDefault()
  12. {
  13.     $this->updateTree(array(
  14.         array('title'=> 'Hello1'),
  15.         array('title'=> 'Hello2')
  16.     ));
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment