-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
147 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class ApprovalConfig extends ConfigGroup | ||
{ | ||
public const VERSION = "ext_approval_version"; | ||
public const IMAGES = "approve_images"; | ||
public const COMMENTS = "approve_comments"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class VideoFileHandlerConfig extends ConfigGroup | ||
{ | ||
public const PLAYBACK_AUTOPLAY = "video_playback_autoplay"; | ||
public const PLAYBACK_LOOP = "video_playback_loop"; | ||
public const PLAYBACK_MUTE = "video_playback_mute"; | ||
public const ENABLED_FORMATS = "video_enabled_formats"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class PoolsConfig extends ConfigGroup | ||
{ | ||
public const MAX_IMPORT_RESULTS = "poolsMaxImportResults"; | ||
public const IMAGES_PER_PAGE = "poolsImagesPerPage"; | ||
public const LISTS_PER_PAGE = "poolsListsPerPage"; | ||
public const UPDATED_PER_PAGE = "poolsUpdatedPerPage"; | ||
public const INFO_ON_VIEW_IMAGE = "poolsInfoOnViewImage"; | ||
public const ADDER_ON_VIEW_IMAGE = "poolsAdderOnViewImage"; | ||
public const SHOW_NAV_LINKS = "poolsShowNavLinks"; | ||
public const AUTO_INCREMENT_ORDER = "poolsAutoIncrementOrder"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class PrivateImageConfig extends ConfigGroup | ||
{ | ||
public const VERSION = "ext_private_image_version"; | ||
public const USER_SET_DEFAULT = "user_private_image_set_default"; | ||
public const USER_VIEW_DEFAULT = "user_private_image_view_default"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class RatingsConfig extends ConfigGroup | ||
{ | ||
public const VERSION = "ext_ratings2_version"; | ||
public const USER_DEFAULTS = "ratings_default"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class RatingsBlurConfig extends ConfigGroup | ||
{ | ||
public const VERSION = "ext_ratings_blur_version"; | ||
public const GLOBAL_DEFAULTS = "ext_ratings_blur_defaults"; | ||
public const USER_DEFAULTS = "ratings_blur_default"; | ||
public const DEFAULT_OPTIONS = ["e"]; | ||
public const NULL_OPTION = "[none]"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class ResizeConfig extends ConfigGroup | ||
{ | ||
public const ENABLED = 'resize_enabled'; | ||
public const UPLOAD = 'resize_upload'; | ||
public const ENGINE = 'resize_engine'; | ||
public const DEFAULT_WIDTH = 'resize_default_width'; | ||
public const DEFAULT_HEIGHT = 'resize_default_height'; | ||
public const GET_ENABLED = 'resize_get_enabled'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class ReverseSearchLinksConfig extends ConfigGroup | ||
{ | ||
public const ENABLED_SERVICES = "ext_reverse_search_links_enabled_services"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class SpeedHaxConfig extends ConfigGroup | ||
{ | ||
public const NO_AUTO_DB_UPGRADE = "speed_hax_no_auto_db_upgrade"; | ||
public const CACHE_EVENT_LISTENERS = "speed_hax_cache_listeners"; | ||
public const PURGE_COOKIE = "speed_hax_purge_cookie"; | ||
public const RECENT_COMMENTS = "speed_hax_recent_comments"; | ||
public const BIG_SEARCH = "speed_hax_big_search"; | ||
public const LIMIT_COMPLEX = "speed_hax_limit_complex"; | ||
public const FAST_PAGE_LIMIT = "speed_hax_fast_page_limit"; | ||
public const CACHE_FIRST_FEW = "speed_hax_cache_first_few"; | ||
public const RSS_LIMIT = "speed_hax_rss_limit"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class TrashConfig extends ConfigGroup | ||
{ | ||
public const VERSION = "ext_trash_version"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class WikiConfig extends ConfigGroup | ||
{ | ||
public const TAG_PAGE_TEMPLATE = "wiki_tag_page_template"; | ||
public const EMPTY_TAGINFO = "wiki_empty_taginfo"; | ||
public const TAG_SHORTWIKIS = "shortwikis_on_tags"; | ||
public const ENABLE_REVISIONS = "wiki_revisions"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters