SAEWEB2.2/ci/application/controllers/Albums.php

60 lines
2.0 KiB
PHP
Raw Normal View History

2024-05-21 15:05:29 +02:00
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Albums extends CI_Controller {
2024-05-30 10:05:37 +02:00
public function __construct(){
parent::__construct();
$this->load->model('model_music');
}
2024-05-28 11:55:36 +02:00
2024-05-30 10:05:37 +02:00
public function index(){
2024-06-10 13:41:07 +02:00
$selectedGenre = '0'; // Valeur par défaut pour le genre si aucun n'est sélectionné
if ($_SERVER["REQUEST_METHOD"] == "POST") {
if(isset($_POST['Genre'])){
$selectedGenre = $_POST['Genre'];
}
}
$albums = $this->model_music->getAlbums($selectedGenre);
$playlists = $this->model_music->getPlaylist();
$this->load->view('layout/header');
$this->load->view('albums_list', ['albums' => $albums, 'playlists' => $playlists]);
$this->load->view('layout/footer');
2024-06-10 11:16:43 +02:00
$selectedGenre = '0';
$search = '';
if ($_SERVER["REQUEST_METHOD"] == "POST") {
if(isset($_POST['Genre'])){
$selectedGenre = $_POST['Genre'];
}
}
if ($_SERVER["REQUEST_METHOD"] == "POST") {
if(isset($_POST['recherche'])){
$search = $_POST['recherche'];
}
}
2024-05-30 10:05:37 +02:00
}
2024-05-21 15:05:29 +02:00
2024-05-30 10:05:37 +02:00
public function view($album_id){
2024-05-30 10:33:06 +02:00
$songs = $this->model_music->getSongOfAlbum($album_id);
2024-05-30 10:05:37 +02:00
if (empty($songs)) {
2024-05-30 16:14:38 +02:00
$songs = [];
2024-05-30 10:05:37 +02:00
}
2024-06-05 19:36:03 +02:00
$playlists = $this->model_music->getPlaylist();
$this->load->view('layout/header');
2024-06-05 19:36:03 +02:00
$this->load->view('song_album_list', ['songs' => $songs, 'playlists' => $playlists]);
$this->load->view('layout/footer');
2024-05-30 10:05:37 +02:00
}
public function addAllSongsToPlaylist(){
$album_id = $this->input->post('album_id');
$playlistId = $this->input->post('playlist');
$songs = $this->model_music->getSongOfAlbum($album_id);
foreach ($songs as $song) {
$this->model_music->addSongToPlaylist($song->name, $playlistId);
}
redirect('playlist');
}
2024-05-30 10:05:37 +02:00
}
?>