13 lines
		
	
	
		
			445 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			445 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php declare(strict_types=1);
 | 
						|
 | 
						|
class PrivateImageInfo extends ExtensionInfo
 | 
						|
{
 | 
						|
    public const KEY = "private_image";
 | 
						|
 | 
						|
    public string $key = self::KEY;
 | 
						|
    public string $name = "Private Post";
 | 
						|
    public array $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
 | 
						|
    public string $license = self::LICENSE_WTFPL;
 | 
						|
    public string $description = "Allows users to mark images as private, which prevents other users from seeing them.";
 | 
						|
}
 |