2011-07-22 08:30:52 +04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ownCloud - media plugin
|
|
|
|
*
|
|
|
|
* @author Robin Appelman
|
|
|
|
* @copyright 2010 Robin Appelman icewind1991@gmail.com
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 3 of the License, or any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
require_once('../../lib/base.php');
|
|
|
|
|
|
|
|
// Check if we are a user
|
2011-07-29 23:36:03 +04:00
|
|
|
if( !OC_User::isLoggedIn()){
|
|
|
|
header( "Location: ".OC_Helper::linkTo( '', 'index.php' ));
|
2011-07-22 08:30:52 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
require_once('lib_collection.php');
|
|
|
|
require_once('lib_scanner.php');
|
|
|
|
|
2011-07-30 01:53:22 +04:00
|
|
|
OC_UTIL::addScript('media','player');
|
|
|
|
OC_UTIL::addScript('media','music');
|
|
|
|
OC_UTIL::addScript('media','playlist');
|
|
|
|
OC_UTIL::addScript('media','collection');
|
|
|
|
OC_UTIL::addScript('media','jquery.jplayer.min');
|
|
|
|
OC_UTIL::addStyle('media','player');
|
|
|
|
OC_UTIL::addStyle('media','music');
|
2011-07-26 18:04:57 +04:00
|
|
|
|
2011-07-30 01:53:22 +04:00
|
|
|
OC_APP::setActiveNavigationEntry( 'media_playlist' );
|
2011-07-22 08:30:52 +04:00
|
|
|
|
2011-07-29 23:36:03 +04:00
|
|
|
$tmpl = new OC_Template( 'media', 'music', 'user' );
|
2011-07-26 18:04:57 +04:00
|
|
|
|
2011-07-30 01:53:22 +04:00
|
|
|
$player = new OC_TEMPLATE( 'media', 'player');
|
|
|
|
$playlist = new OC_TEMPLATE( 'media', 'playlist');
|
|
|
|
$collection= new OC_TEMPLATE( 'media', 'collection');
|
|
|
|
|
2011-07-26 18:04:57 +04:00
|
|
|
$tmpl->assign('player',$player->fetchPage());
|
2011-07-30 01:53:22 +04:00
|
|
|
$tmpl->assign('playlist',$playlist->fetchPage());
|
|
|
|
$tmpl->assign('collection',$collection->fetchPage());
|
2011-07-22 08:30:52 +04:00
|
|
|
$tmpl->printPage();
|
|
|
|
?>
|
|
|
|
|