예제 #1
0
파일: Songsorter.php 프로젝트: hlag/svs
 private function getAndReturnPlayZeiten($pl_id)
 {
     $pl = new playlist();
     $pl->getPlaylistByID($pl_id);
     echo json_encode($pl->getDataForJson());
 }
예제 #2
0
파일: ajax.php 프로젝트: hlag/svs
 private function savePlaylistStartzeit($pl_id, $uhrzeitStart)
 {
     $pl = new playlist();
     $pl->getPlaylistByID($pl_id);
     $pl->setStartUhrzeit($uhrzeitStart);
     $pl->savePlaylist();
     $pl->setUhrzeiten();
     $retval = $pl->getDataForJson();
     echo json_encode($retval);
 }