Changed a bunch of core extensions to be hidden since there's nothing to interact with
This commit is contained in:
parent
4d69e7ce34
commit
18cd74f57d
12 changed files with 12 additions and 5 deletions
|
@ -9,7 +9,7 @@ class FourOhFourInfo extends ExtensionInfo
|
|||
public $url = self::SHIMMIE_URL;
|
||||
public $authors = self::SHISH_AUTHOR;
|
||||
public $license = self::LICENSE_GPLV2;
|
||||
public $visibility = self::VISIBLE_ADMIN;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
public $description = "If no other extension puts anything onto the page, show 404";
|
||||
public $core = true;
|
||||
}
|
||||
|
|
|
@ -9,5 +9,6 @@ class HelpPagesInfo extends ExtensionInfo
|
|||
public $authors = ["Matthew Barbour"=>"matthew@darkholme.net"];
|
||||
public $license = self::LICENSE_WTFPL;
|
||||
public $description = "Provides documentation screens";
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
public $core = true;
|
||||
}
|
||||
|
|
|
@ -10,6 +10,6 @@ class ImageIOInfo extends ExtensionInfo
|
|||
public $authors = [self::SHISH_NAME=> self::SHISH_EMAIL, "jgen"=>"jgen.tech@gmail.com"];
|
||||
public $license = self::LICENSE_GPLV2;
|
||||
public $description = "Handle the image database";
|
||||
public $visibility = self::VISIBLE_ADMIN;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
public $core = true;
|
||||
}
|
||||
|
|
|
@ -10,4 +10,5 @@ class SetupInfo extends ExtensionInfo
|
|||
public $authors = self::SHISH_AUTHOR;
|
||||
public $description = "Allows the site admin to configure the board to his or her taste";
|
||||
public $core = true;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
}
|
||||
|
|
|
@ -9,7 +9,7 @@ class StaticFilesInfo extends ExtensionInfo
|
|||
public $url = self::SHIMMIE_URL;
|
||||
public $authors = self::SHISH_AUTHOR;
|
||||
public $license = self::LICENSE_GPLV2;
|
||||
public $visibility = self::VISIBLE_ADMIN;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
public $description = 'If Shimmie can\'t handle a request, check static files ($theme/static/$filename, then ext/static_files/static/$filename)';
|
||||
public $core = true;
|
||||
}
|
||||
|
|
|
@ -10,4 +10,5 @@ class SystemInfo extends ExtensionInfo
|
|||
public $license = self::LICENSE_WTFPL;
|
||||
public $description = "Provides system screen";
|
||||
public $core = true;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
}
|
||||
|
|
|
@ -10,4 +10,5 @@ class TagListInfo extends ExtensionInfo
|
|||
public $authors = self::SHISH_AUTHOR;
|
||||
public $description = "Show the tags in various ways";
|
||||
public $core = true;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
}
|
||||
|
|
|
@ -9,6 +9,6 @@ class UpgradeInfo extends ExtensionInfo
|
|||
public $url = self::SHIMMIE_URL;
|
||||
public $authors = self::SHISH_AUTHOR;
|
||||
public $description = "Keeps things happy behind the scenes";
|
||||
public $visibility = self::VISIBLE_ADMIN;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
public $core = true;
|
||||
}
|
||||
|
|
|
@ -10,4 +10,5 @@ class UploadInfo extends ExtensionInfo
|
|||
public $authors = self::SHISH_AUTHOR;
|
||||
public $description = "Allows people to upload files to the website";
|
||||
public $core = true;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
}
|
||||
|
|
|
@ -9,4 +9,5 @@ class UserPageInfo extends ExtensionInfo
|
|||
public $authors = self::SHISH_AUTHOR;
|
||||
public $description = "Allows people to sign up to the website";
|
||||
public $core = true;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
}
|
||||
|
|
|
@ -9,6 +9,6 @@ class UserConfigInfo extends ExtensionInfo
|
|||
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 $visibility = self::VISIBLE_HIDDEN;
|
||||
public $core = true;
|
||||
}
|
||||
|
|
|
@ -10,4 +10,5 @@ class ViewImageInfo extends ExtensionInfo
|
|||
public $authors = self::SHISH_AUTHOR;
|
||||
public $description = "Allows users to see uploaded images";
|
||||
public $core = true;
|
||||
public $visibility = self::VISIBLE_HIDDEN;
|
||||
}
|
||||
|
|
Reference in a new issue