コード例 #1
0
ファイル: actions.class.php プロジェクト: rande/sfAmfPlugin
 /**
  * Executes amf action
  *
  * @param sfWebRequest $request A request object
  */
 public function executeAmf(sfWebRequest $request)
 {
     $this->setLayout(false);
     $gateway = new sfAmfGateway($this->context->getConfiguration()->getEventDispatcher(), $this->getResponse());
     return $this->renderText($gateway->service());
 }