better organizing Library controller since datatables is now used.
This commit is contained in:
parent
3d6d31a535
commit
904a60418c
|
@ -13,8 +13,7 @@ class LibraryController extends Zend_Controller_Action
|
||||||
}
|
}
|
||||||
|
|
||||||
$ajaxContext = $this->_helper->getHelper('AjaxContext');
|
$ajaxContext = $this->_helper->getHelper('AjaxContext');
|
||||||
$ajaxContext->addActionContext('contents', 'html')
|
$ajaxContext->addActionContext('contents', 'json')
|
||||||
->addActionContext('contents', 'json')
|
|
||||||
->addActionContext('delete', 'json')
|
->addActionContext('delete', 'json')
|
||||||
->addActionContext('context-menu', 'json')
|
->addActionContext('context-menu', 'json')
|
||||||
->initContext();
|
->initContext();
|
||||||
|
@ -28,16 +27,16 @@ class LibraryController extends Zend_Controller_Action
|
||||||
$this->view->headScript()->appendFile('/js/airtime/onready/library.js','text/javascript');
|
$this->view->headScript()->appendFile('/js/airtime/onready/library.js','text/javascript');
|
||||||
$this->view->headScript()->appendFile('/js/contextmenu/jjmenu.js','text/javascript');
|
$this->view->headScript()->appendFile('/js/contextmenu/jjmenu.js','text/javascript');
|
||||||
$this->view->headScript()->appendFile('/js/jplayer/jquery.jplayer.min.js');
|
$this->view->headScript()->appendFile('/js/jplayer/jquery.jplayer.min.js');
|
||||||
|
$this->view->headScript()->appendFile('/js/datatables/js/jquery.dataTables.js','text/javascript');
|
||||||
|
$this->view->headScript()->appendFile('/js/airtime/library/library.js','text/javascript');
|
||||||
|
|
||||||
|
$this->view->headLink()->appendStylesheet('/css/media_library.css');
|
||||||
$this->view->headLink()->appendStylesheet('/css/contextmenu.css');
|
$this->view->headLink()->appendStylesheet('/css/contextmenu.css');
|
||||||
|
|
||||||
$this->_helper->layout->setLayout('library');
|
$this->_helper->layout->setLayout('library');
|
||||||
|
$this->_helper->viewRenderer->setResponseSegment('library');
|
||||||
unset($this->search_sess->page);
|
|
||||||
unset($this->search_sess->md);
|
|
||||||
|
|
||||||
$this->_helper->actionStack('index', 'playlist');
|
$this->_helper->actionStack('index', 'playlist');
|
||||||
$this->_helper->actionStack('contents', 'library');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function contextMenuAction()
|
public function contextMenuAction()
|
||||||
|
@ -118,23 +117,10 @@ class LibraryController extends Zend_Controller_Action
|
||||||
|
|
||||||
public function contentsAction()
|
public function contentsAction()
|
||||||
{
|
{
|
||||||
$this->view->headScript()->appendFile('/js/datatables/js/jquery.dataTables.js','text/javascript');
|
$post = $this->getRequest()->getPost();
|
||||||
$this->view->headScript()->appendFile('/js/airtime/library/library.js','text/javascript');
|
$datatables = StoredFile::searchFilesForPlaylistBuilder($post);
|
||||||
|
|
||||||
$this->view->headLink()->appendStylesheet('/css/media_library.css');
|
die(json_encode($datatables));
|
||||||
|
|
||||||
$this->_helper->viewRenderer->setResponseSegment('library');
|
|
||||||
|
|
||||||
$format = $this->_getParam('format');
|
|
||||||
|
|
||||||
$post = $this->getRequest()->getPost();
|
|
||||||
|
|
||||||
if($format == "json") {
|
|
||||||
|
|
||||||
$datatables = StoredFile::searchFilesForPlaylistBuilder($post);
|
|
||||||
|
|
||||||
die(json_encode($datatables));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function editFileMdAction()
|
public function editFileMdAction()
|
||||||
|
|
|
@ -1,23 +0,0 @@
|
||||||
<ul>
|
|
||||||
<li><a href="#simpleSearch">Search</a></li>
|
|
||||||
<li><a href="#advancedSearch">Advanced Search</a></li>
|
|
||||||
</ul>
|
|
||||||
<div id="simpleSearch">
|
|
||||||
<table id="library_display" cellpadding="0" cellspacing="0" class="datatable">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<th>Id</th>
|
|
||||||
<th>Title</th>
|
|
||||||
<th>Creator</th>
|
|
||||||
<th>Album</th>
|
|
||||||
<th>Track</th>
|
|
||||||
<th>Length</th>
|
|
||||||
<th>Type</th>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody></tbody>
|
|
||||||
</table>
|
|
||||||
</div>
|
|
||||||
<div id="advancedSearch">
|
|
||||||
Some Text
|
|
||||||
</div>
|
|
|
@ -0,0 +1,23 @@
|
||||||
|
<ul>
|
||||||
|
<li><a href="#simpleSearch">Search</a></li>
|
||||||
|
<li><a href="#advancedSearch">Advanced Search</a></li>
|
||||||
|
</ul>
|
||||||
|
<div id="simpleSearch">
|
||||||
|
<table id="library_display" cellpadding="0" cellspacing="0" class="datatable">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th>Id</th>
|
||||||
|
<th>Title</th>
|
||||||
|
<th>Creator</th>
|
||||||
|
<th>Album</th>
|
||||||
|
<th>Track</th>
|
||||||
|
<th>Length</th>
|
||||||
|
<th>Type</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody></tbody>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
|
<div id="advancedSearch">
|
||||||
|
Some Text
|
||||||
|
</div>
|
Loading…
Reference in New Issue