19 lines
394 B
PHP
19 lines
394 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* Name: Handle ICO
|
||
|
* Author: Shish <webmaster@shishnet.org>
|
||
|
* Description: Handle windows icons
|
||
|
*/
|
||
|
|
||
|
class IcoFileHandlerInfo extends ExtensionInfo
|
||
|
{
|
||
|
public const KEY = "handle_ico";
|
||
|
|
||
|
public $key = self::KEY;
|
||
|
public $name = "Handle ICO";
|
||
|
public $url = self::SHIMMIE_URL;
|
||
|
public $authors = self::SHISH_AUTHOR;
|
||
|
public $description = "Handle windows icons";
|
||
|
}
|