This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/user_config/info.php
2019-09-29 14:22:04 +01:00

21 lines
618 B
PHP

<?php
/*
* Name: User-specific settings
* Author: Matthew Barbour <matthew@darkholme.net>
* Description: Provides system-wide support for user-specific settings
* Visibility: admin
*/
class UserConfigInfo extends ExtensionInfo
{
public const KEY = "user_config";
public $key = self::KEY;
public $name = "User-specific settings";
public $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
public $license = self::LICENSE_WTFPL;
public $description = "Provides system-wide support for user-specific settings";
public $visibility = self::VISIBLE_ADMIN;
public $core = true;
}