29 lines
		
	
	
		
			811 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			811 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
/*
 | 
						|
 * Name: Downtime
 | 
						|
 * Author: Shish <webmaster@shishnet.org>
 | 
						|
 * Link: http://code.shishnet.org/shimmie2/
 | 
						|
 * License: GPLv2
 | 
						|
 * Description: Show a "down for maintenance" page
 | 
						|
 * Documentation:
 | 
						|
 *
 | 
						|
 */
 | 
						|
 | 
						|
class DowntimeInfo extends ExtensionInfo
 | 
						|
{
 | 
						|
    public const KEY = "downtime";
 | 
						|
 | 
						|
    public $key = self::KEY;
 | 
						|
    public $name = "Downtime";
 | 
						|
    public $url = self::SHIMMIE_URL;
 | 
						|
    public $authors = self::SHISH_AUTHOR;
 | 
						|
    public $license = self::LICENSE_GPLV2;
 | 
						|
    public $description = "Show a \"down for maintenance\" page";
 | 
						|
    public $documentation =
 | 
						|
"Once installed there will be some more options on the config page --
 | 
						|
Ticking \"disable non-admin access\" will mean that regular and anonymous
 | 
						|
users will be blocked from accessing the site, only able to view the
 | 
						|
message specified in the box.";
 | 
						|
}
 |