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