mirror of
				https://git.bakhai.co.in/FbIN/LibreY.git
				synced 2025-11-04 03:51:32 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			351 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			351 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
    class UserAgentRequest extends EngineRequest {
 | 
						|
        public function parse_results($response) {
 | 
						|
            return array(
 | 
						|
                "special_response" => array(
 | 
						|
                    "response" => $_SERVER["HTTP_USER_AGENT"], 
 | 
						|
                    "source" => null
 | 
						|
                )
 | 
						|
            );                   
 | 
						|
        }
 | 
						|
    }
 | 
						|
?>
 |