24 lines
		
	
	
		
			924 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			924 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Name: Arrow Key Navigation
 | 
						|
 * Author: Drudex Software <support@drudexsoftware.com>
 | 
						|
 * Link: http://www.drudexsoftware.com/
 | 
						|
 * License: GPLv2
 | 
						|
 * Description: Allows viewers no navigate between images using the left & right arrow keys.
 | 
						|
 * Documentation:
 | 
						|
 *  Simply enable this extention in the extention manager to enable arrow key navigation.
 | 
						|
 */
 | 
						|
class ArrowkeyNavigationInfo extends ExtensionInfo
 | 
						|
{
 | 
						|
    public const KEY = "arrowkey_navigation";
 | 
						|
 | 
						|
    public $key = self::KEY;
 | 
						|
    public $name = "Arrow Key Navigation";
 | 
						|
    public $url = "http://www.drudexsoftware.com/";
 | 
						|
    public $authors = ["Drudex Software"=>"support@drudexsoftware.com"];
 | 
						|
    public $license = self::LICENSE_GPLV2;
 | 
						|
    public $description = "Allows viewers no navigate between images using the left & right arrow keys.";
 | 
						|
    public $documentation =
 | 
						|
"Simply enable this extension in the extension manager to enable arrow key navigation.";
 | 
						|
}
 |