コード例 #1
0
ファイル: actions.class.php プロジェクト: rewrewby/propertyx
 /**
  * Ajax for images folder select
  *
  * @param sfWebRequest $request
  * @return string
  */
 public function executeImagesAjax(sfWebRequest $request)
 {
     $this->getResponse()->setContentType('application/json');
     $folders = sfAssetFolderPeer::retrieveByPathForSelect($request->getParameter('path'), $request->getParameter('limit'));
     return $this->renderText(json_encode($folders));
 }