consistent class naming
This commit is contained in:
parent
1314c3990a
commit
160f673060
16 changed files with 16 additions and 16 deletions
|
@ -9,7 +9,7 @@
|
|||
* Documentation:
|
||||
*
|
||||
*/
|
||||
class custom_html_headersInfo extends ExtensionInfo
|
||||
class CustomHtmlHeadersInfo extends ExtensionInfo
|
||||
{
|
||||
public const KEY = "custom_html_headers";
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
class custom_html_headers extends Extension
|
||||
class CustomHtmlHeaders extends Extension
|
||||
{
|
||||
# Adds setup block for custom <head> content
|
||||
public function onSetupBuilding(SetupBuildingEvent $event)
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
* Documentation:
|
||||
*
|
||||
*/
|
||||
class google_analyticsInfo extends ExtensionInfo
|
||||
class GoogleAnalyticsInfo extends ExtensionInfo
|
||||
{
|
||||
public const KEY = "google_analytics";
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
class google_analytics extends Extension
|
||||
class GoogleAnalytics extends Extension
|
||||
{
|
||||
# Add analytics to config
|
||||
public function onSetupBuilding(SetupBuildingEvent $event)
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* Description: Self explanatory
|
||||
*/
|
||||
|
||||
class RSS_CommentsInfo extends ExtensionInfo
|
||||
class RSSCommentsInfo extends ExtensionInfo
|
||||
{
|
||||
public const KEY = "rss_comments";
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
class RSS_Comments extends Extension
|
||||
class RSSComments extends Extension
|
||||
{
|
||||
public function onPostListBuilding(PostListBuildingEvent $event)
|
||||
{
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
* License: GPLv2
|
||||
* Description: Self explanatory
|
||||
*/
|
||||
class RSS_ImagesInfo extends ExtensionInfo
|
||||
class RSSImagesInfo extends ExtensionInfo
|
||||
{
|
||||
public const KEY = "rss_images";
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?php
|
||||
|
||||
|
||||
class RSS_Images extends Extension
|
||||
class RSSImages extends Extension
|
||||
{
|
||||
public function onPostListBuilding(PostListBuildingEvent $event)
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
/* needed for access to build_thumb_html */
|
||||
class RSS_ImagesTheme extends Themelet
|
||||
class RSSImagesTheme extends Themelet
|
||||
{
|
||||
}
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* Description: Keep a record of source changes, and allows you to revert changes.
|
||||
*/
|
||||
|
||||
class Source_HistoryInfo extends ExtensionInfo
|
||||
class SourceHistoryInfo extends ExtensionInfo
|
||||
{
|
||||
public const KEY = "source_history";
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Source_History extends Extension
|
||||
class SourceHistory extends Extension
|
||||
{
|
||||
// in before source are actually set, so that "get current source" works
|
||||
public function get_priority(): int
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
class Source_HistoryTheme extends Themelet
|
||||
class SourceHistoryTheme extends Themelet
|
||||
{
|
||||
private $messages = [];
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* Description: Keep a record of tag changes, and allows you to revert changes.
|
||||
*/
|
||||
|
||||
class Tag_HistoryInfo extends ExtensionInfo
|
||||
class TagHistoryInfo extends ExtensionInfo
|
||||
{
|
||||
public const KEY = "tag_history";
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
class Tag_History extends Extension
|
||||
class TagHistory extends Extension
|
||||
{
|
||||
// in before tags are actually set, so that "get current tags" works
|
||||
public function get_priority(): int
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* Author: Bzchan <bzchan@animemahou.com>, modified by jgen <jgen.tech@gmail.com>
|
||||
*/
|
||||
|
||||
class Tag_HistoryTheme extends Themelet
|
||||
class TagHistoryTheme extends Themelet
|
||||
{
|
||||
private $messages = [];
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
* Do not remove this notice. *
|
||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||
|
||||
class taggerTheme extends Themelet
|
||||
class TaggerTheme extends Themelet
|
||||
{
|
||||
public function build_tagger(Page $page, $event)
|
||||
{
|
||||
|
|
Reference in a new issue