Example #1
0
 /**
  * load_playlist
  * This is called once per page load it makes sure that this session
  * has a tmp_playlist, creating it if it doesn't, then sets $this->playlist
  * as a tmp_playlist object that can be fiddled with later on
  */
 public function load_playlist()
 {
     $session_id = session_id();
     $this->playlist = Tmp_Playlist::get_from_session($session_id);
 }