fictioneer/functions.php
2023-01-24 02:19:24 +01:00

401 lines
8.4 KiB
PHP

<?php
// =============================================================================
// CONSTANTS/SETTINGS
// =============================================================================
// Version
define( 'FICTIONEER_VERSION', '5.0.3' );
define( 'FICTIONEER_MAJOR_VERSION', '5' );
define( 'FICTIONEER_RELEASE_TAG', 'v5.0.3' );
if ( ! defined( 'CHILD_VERSION' ) ) {
define( 'CHILD_VERSION', 0 );
}
if ( ! defined( 'CHILD_NAME' ) ) {
define( 'CHILD_NAME', 0 );
}
/*
* Endpoints
*/
// Endpoint: OAuth 2.0
if ( ! defined( 'FICTIONEER_OAUTH_ENDPOINT' ) ) {
define( 'FICTIONEER_OAUTH_ENDPOINT', 'oauth2' );
}
// Endpoint: EPUBs
if ( ! defined( 'FICTIONEER_EPUB_ENDPOINT' ) ) {
define( 'FICTIONEER_EPUB_ENDPOINT', 'download-epub' );
}
// Endpoint: Logout (disable with false)
if ( ! defined( 'FICTIONEER_LOGOUT_ENDPOINT' ) ) {
define( 'FICTIONEER_LOGOUT_ENDPOINT', 'fictioneer-logout' );
}
/*
* Strings
*/
// String: CSS name of the primary font
if ( ! defined( 'FICTIONEER_PRIMARY_FONT' ) ) {
define( 'FICTIONEER_PRIMARY_FONT', 'Open Sans' );
}
// String: Display name of the primary font
if ( ! defined( 'FICTIONEER_PRIMARY_FONT_NAME' ) ) {
define( 'FICTIONEER_PRIMARY_FONT_NAME', 'Open Sans' );
}
/*
* Integers
*/
// Integer: Commentcode expiration timer in seconds (-1 for infinite)
if ( ! defined( 'FICTIONEER_COMMENTCODE_DURATION' ) ) {
define( 'FICTIONEER_COMMENTCODE_DURATION', 600 );
}
// Integer: AJAX cache TTL in milliseconds
if ( ! defined( 'FICTIONEER_AJAX_TTL' ) ) {
define( 'FICTIONEER_AJAX_TTL', 60000 );
}
// Integer: AJAX login cache TTL in milliseconds
if ( ! defined( 'FICTIONEER_AJAX_LOGIN_TTL' ) ) {
define( 'FICTIONEER_AJAX_LOGIN_TTL', 15000 );
}
// Integer: AJAX POST debounce rate in milliseconds
if ( ! defined( 'FICTIONEER_AJAX_POST_DEBOUNCE_RATE' ) ) {
define( 'FICTIONEER_AJAX_POST_DEBOUNCE_RATE', 700 );
}
// Integer: Author search keyword limit (use simple text input if exceeded)
if ( ! defined( 'FICTIONEER_AUTHOR_KEYWORD_SEARCH_LIMIT' ) ) {
define( 'FICTIONEER_AUTHOR_KEYWORD_SEARCH_LIMIT', 100 );
}
/*
* Booleans
*/
// Boolean: Theme cache purging on post update
if ( ! defined( 'FICTIONEER_THEME_CACHE_PURGING' ) ) {
define( 'FICTIONEER_THEME_CACHE_PURGING', true );
}
// Boolean: Theme relationship cache purging on post update
if ( ! defined( 'FICTIONEER_THEME_RELATIONSHIP_CACHE_PURGING' ) ) {
define( 'FICTIONEER_THEME_RELATIONSHIP_CACHE_PURGING', true );
}
// Boolean: Search menu items
if ( ! defined( 'FICTIONEER_SEARCH_MENU_ITEMS' ) ) {
define( 'FICTIONEER_SEARCH_MENU_ITEMS', true );
}
// Boolean: Base theme switch
if ( ! defined( 'FICTIONEER_THEME_SWITCH' ) ) {
define( 'FICTIONEER_THEME_SWITCH', true );
}
// Boolean: Attachment pages
if ( ! defined( 'FICTIONEER_ATTACHMENT_PAGES' ) ) {
define( 'FICTIONEER_ATTACHMENT_PAGES', false );
}
// Boolean: Show OAuth ID Hashes
if ( ! defined( 'FICTIONEER_SHOW_OAUTH_HASHES' ) ) {
define( 'FICTIONEER_SHOW_OAUTH_HASHES', false );
}
// Boolean: Show AJAX comment submission disallowed content keys
if ( ! defined( 'FICTIONEER_SHOW_AJAX_COMMENT_DISALLOWED_KEYS' ) ) {
define( 'FICTIONEER_SHOW_AJAX_COMMENT_DISALLOWED_KEYS', true );
}
// =============================================================================
// GLOBAL
// =============================================================================
/**
* Provides various utility functions.
*/
require_once __DIR__ . '/includes/functions/_utility.php';
/**
* Modify WordPress functions via hooks.
*/
require_once __DIR__ . '/includes/functions/_wordpress_mods.php';
/**
* Set up the theme customizer.
*/
require_once __DIR__ . '/includes/functions/_customizer.php';
/**
* Set up the theme.
*/
require_once __DIR__ . '/includes/functions/_theme_setup.php';
/**
* Configuration for the Advanced Custom Fields plugin.
*/
require_once __DIR__ . '/includes/functions/_acf.php';
/**
* Add custom post types.
*/
require_once __DIR__ . '/includes/functions/_cpt_and_taxonomies.php';
/**
* Add custom shortcodes.
*/
require_once __DIR__ . '/includes/functions/_shortcodes.php';
/**
* Caches and Transients.
*/
require_once __DIR__ . '/includes/functions/_caching_and_transients.php';
/**
* Generate sitemap.
*/
require_once __DIR__ . '/includes/functions/_sitemap.php';
/**
* Add SEO features to the site.
*/
require_once __DIR__ . '/includes/functions/_seo.php';
/**
* Communicate with the Discord API.
*/
require_once __DIR__ . '/includes/functions/_discord.php';
/**
* Generate ePUBs for stories.
*/
require_once __DIR__ . '/includes/functions/_epub.php';
/**
* Log-in and register subscribers via OAuth 2.0.
*/
require_once __DIR__ . '/includes/functions/_oauth.php';
/**
* Handle comments on story pages.
*/
require_once __DIR__ . '/includes/functions/comments/_story_comments.php';
/**
* Display comments via AJAX.
*/
require_once __DIR__ . '/includes/functions/comments/_comments_ajax.php';
/**
* Handle comments.
*/
require_once __DIR__ . '/includes/functions/comments/_comments_controller.php';
/**
* Build comment form.
*/
require_once __DIR__ . '/includes/functions/comments/_comments_form.php';
/**
* Build comments thread.
*/
require_once __DIR__ . '/includes/functions/comments/_comments_threads.php';
/**
* Handle comments moderation.
*/
require_once __DIR__ . '/includes/functions/comments/_comments_moderation.php';
/**
* Add functions for users.
*/
require_once __DIR__ . '/includes/functions/users/_user_data.php';
/**
* Add functions to handle avatars.
*/
require_once __DIR__ . '/includes/functions/users/_avatars.php';
/**
* Add the follow feature.
*/
require_once __DIR__ . '/includes/functions/users/_follows.php';
/**
* Add the bookmarks feature.
*/
require_once __DIR__ . '/includes/functions/users/_bookmarks.php';
/**
* Add the checkmarks features.
*/
require_once __DIR__ . '/includes/functions/users/_checkmarks.php';
/**
* Add the reminders feature.
*/
require_once __DIR__ . '/includes/functions/users/_reminders.php';
/**
* Add privacy and security measures.
*/
require_once __DIR__ . '/includes/functions/users/_privacy_security.php';
/**
* Add content helper functions.
*/
require_once __DIR__ . '/includes/functions/_content_helpers.php';
/**
* Add content query functions.
*/
require_once __DIR__ . '/includes/functions/_query_helpers.php';
/**
* Add content helper functions.
*/
require_once __DIR__ . '/includes/functions/_roles.php';
/**
* Add forms.
*/
require_once __DIR__ . '/includes/functions/_forms.php';
/**
* Add search.
*/
require_once __DIR__ . '/includes/functions/_search.php';
// =============================================================================
// ADMIN ONLY
// =============================================================================
if ( is_admin() ) {
/**
* Remove obsolete data and clean up when the theme is deactivated/deleted.
*/
require_once __DIR__ . '/includes/functions/_cleanup.php';
/**
* Add setting page for the theme.
*/
require_once __DIR__ . '/includes/functions/settings/_settings.php';
/**
* Extend user profile in admin panel.
*/
require_once __DIR__ . '/includes/functions/users/_admin_profile.php';
}
// =============================================================================
// FRONTEND ONLY
// =============================================================================
if ( ! is_admin() ) {
/**
* Add general hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_general_hooks.php';
/**
* Add chapter hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_chapter_hooks.php';
/**
* Add recommendation hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_recommendation_hooks.php';
/**
* Add story hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_story_hooks.php';
/**
* Add post hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_post_hooks.php';
/**
* Add collection hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_collection_hooks.php';
/**
* Add profile hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_profile_hooks.php';
/**
* Add mobile menu hooks.
*/
require_once __DIR__ . '/includes/functions/hooks/_mobile_menu_hooks.php';
/**
* Generate SEO schema graphs.
*/
if ( get_option( 'fictioneer_enable_seo' ) && ! fictioneer_seo_plugin_active() ) {
require_once __DIR__ . '/includes/functions/_schemas.php';
}
}
?>