Beispiel #1
0
        <?php 
}
?>
        <?php 
$data = Song::get_recently_played($client->id);
Song::build_cache(array_keys($data));
$user_id = $client->id;
require AmpConfig::get('prefix') . UI::find_template('show_recently_played.inc.php');
?>
        </div>
        <?php 
if (AmpConfig::get('allow_upload')) {
    ?>
        <div id="artists" class="tab_content">
        <?php 
    $sql = Catalog::get_uploads_sql('artist', $client->id);
    $browse = new Browse();
    $browse->set_type('artist', $sql);
    $browse->set_simple_browse(true);
    $browse->show_objects();
    $browse->store();
    ?>
        </div>
        <?php 
}
?>
        <div id="playlists" class="tab_content">
        <?php 
$playlist_ids = Playlist::get_playlists(false, $client->id);
$browse = new Browse();
$browse->set_type('playlist');
 * (at your option) any later version.
 *
 * This program 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 Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */
$sql = Catalog::get_uploads_sql('song', $GLOBALS['user']->id);
$browse = new Browse();
$browse->set_type('song', $sql);
$browse->set_simple_browse(true);
$browse->show_objects();
$browse->store();
$sql = Catalog::get_uploads_sql('album', $GLOBALS['user']->id);
$browse = new Browse();
$browse->set_type('album', $sql);
$browse->set_simple_browse(true);
$browse->show_objects();
$browse->store();
if (!AmpConfig::get('upload_user_artist')) {
    $sql = Catalog::get_uploads_sql('artist', $GLOBALS['user']->id);
    $browse = new Browse();
    $browse->set_type('artist', $sql);
    $browse->set_simple_browse(true);
    $browse->show_objects();
    $browse->store();
}