Skip to content

Instantly share code, notes, and snippets.

@handlename
Created September 21, 2010 10:45
Show Gist options
  • Save handlename/589524 to your computer and use it in GitHub Desktop.
Save handlename/589524 to your computer and use it in GitHub Desktop.
<?php
class myApiActions extends sfActions
{
public function postExecute()
{
parent::postExecute();
// テンプレートを
// apps/api/modules/shared/templates/jsonSuccess.php
// に設定する。
// myApiActionsを継承するすべてのアクションで
// このテンプレートが有効になる。
$this->setTemplate('json', 'shared');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment