public function getFilesWithoutReplayGainAction()
 {
     $dir_id = $this->_getParam('dir_id');
     //connect to db and get get sql
     $rows = Application_Model_StoredFile::listAllFiles2($dir_id, 100);
     $this->_helper->json->sendJson($rows);
 }
Exemple #2
0
 public function getFilesWithoutReplayGainAction()
 {
     // disable the view and the layout
     $this->view->layout()->disableLayout();
     $this->_helper->viewRenderer->setNoRender(true);
     $dir_id = $this->_getParam('dir_id');
     //connect to db and get get sql
     $rows = Application_Model_StoredFile::listAllFiles2($dir_id, 100);
     echo json_encode($rows);
 }