mirror of
				https://github.com/pierre42100/ComunicAPI
				synced 2025-10-31 02:04:53 +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;
 | |
| 
 | |
| 	}
 | |
| 
 | |
| } | 
