mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-11-04 12:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
		
			377 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			377 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * User personnal movies controller
 | 
						|
 * 
 | 
						|
 * @author Pierre HUBERT
 | 
						|
 */
 | 
						|
 | 
						|
class moviesController {
 | 
						|
	
 | 
						|
	/**
 | 
						|
	 * Get the list of movies of the user
 | 
						|
	 * 
 | 
						|
	 * @url POST /movies/get_list
 | 
						|
	 */
 | 
						|
	public function get_movies_list(){
 | 
						|
 | 
						|
		user_login_required(); //Need login
 | 
						|
 | 
						|
		//Fetch the database
 | 
						|
		$movies = CS::get()->components->movies->get_list(userID);
 | 
						|
 | 
						|
		return $movies;
 | 
						|
 | 
						|
	}
 | 
						|
 | 
						|
} |