mirror of
				https://git.tt-rss.org/fox/tt-rss.git
				synced 2025-11-04 05:41:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			157 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			157 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
class Handler_Protected extends Handler {
 | 
						|
 | 
						|
	function before(string $method): bool {
 | 
						|
		return parent::before($method) && !empty($_SESSION['uid']);
 | 
						|
	}
 | 
						|
}
 |