File: /home/clients/94735d3feef25fe7d1511e6bdd8b0ef6/web/wp-content/plugins/sfwd-lms/sfwd_lms.php
<?php
/**
* Plugin Name: LearnDash LMS
* Plugin URI: http://www.learndash.com
* Description: LearnDash LMS Plugin - Turn your WordPress site into a learning management system.
* Version: 4.3.1.3
* Author: LearnDash
* Author URI: http://www.learndash.com
* Text Domain: learndash
* Domain Path: /languages/
*
* @since 2.1.0
*
* @package LearnDash
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Define LearnDash LMS - Set the current version constant.
*
* @since 2.1.0
* @internal Will be set by LearnDash LMS.
*
* @var string $value PHP version x.x.x or x.x.x.x format.
*/
define( 'LEARNDASH_VERSION', '4.3.1.3' );
/**
* Define LearnDash LMS - Set the settings database version.
*
* This define controls logic specific to the Activity database tables schema.
*
* @since 2.3.0
* @internal Will be set by LearnDash LMS.
*
* @var string $value PHP version x.x.x or x.x.x.x format.
*/
define( 'LEARNDASH_SETTINGS_DB_VERSION', '2.5' );
/**
* Define LearnDash LMS - Set the settings database upgrade trigger version.
*
* This define controls admin prompts to perform a data upgrades.
*
* @since 2.3.1
* @internal Will be set by LearnDash.
*
* @var string $value PHP version x.x.x or x.x.x.x format.
*/
define( 'LEARNDASH_SETTINGS_TRIGGER_UPGRADE_VERSION', '2.5' );
/**
* Define LearnDash LMS - Set the text domain.
*
* This define is used when loading the text domain files.
* Should NOT be used for actual text domain string markers.
*
* @since 2.3.2
* @internal Will be set by LearnDash LMS.
*
* @var string $value PHP version x.x.x or x.x.x.x format.
*/
define( 'LEARNDASH_LMS_TEXT_DOMAIN', 'learndash' );
/**
* Define LearnDash LMS - Set the minimum supported PHP version.
*
* @since 3.3.0.2
* @internal Will be set by LearnDash LMS.
*
* @var string $value PHP version x.x.x or x.x.x.x format.
*/
define( 'LEARNDASH_MIN_PHP_VERSION', '7.3' );
/**
* Define LearnDash LMS - Set the minimum supported MySQL version.
*
* @since 3.3.0.2
* @internal Will be set by LearnDash LMS.
*
* @var string $value PHP version x.x.x or x.x.x.x format.
*/
define( 'LEARNDASH_MIN_MYSQL_VERSION', '5.6' );
/**
* Define LearnDash LMS - Set the minimum supported MariaDB version.
*
* @since 3.4.0
* @internal Will be set by LearnDash LMS.
*
* @var string $value PHP version x.x.x or x.x.x.x format.
*/
define( 'LEARNDASH_MIN_MARIA_VERSION', '10.0' );
if ( ! defined( 'LEARNDASH_LMS_PLUGIN_DIR' ) ) {
/**
* Define LearnDash LMS - Set the plugin install path.
*
* Will be set based on the WordPress define `WP_PLUGIN_DIR`.
*
* @since 2.1.4
* @uses WP_PLUGIN_DIR
*
* @var string $value Directory path to plugin install directory.
*/
define( 'LEARNDASH_LMS_PLUGIN_DIR', trailingslashit( str_replace( '\\', '/', WP_PLUGIN_DIR ) . '/' . basename( dirname( __FILE__ ) ) ) );
}
if ( ! defined( 'LEARNDASH_LMS_PLUGIN_URL' ) ) {
$learndash_plugin_url = trailingslashit( WP_PLUGIN_URL . '/' . basename( dirname( __FILE__ ) ) );
$learndash_plugin_url = str_replace( array( 'https://', 'http://' ), array( '//', '//' ), $learndash_plugin_url );
/**
* Define LearnDash LMS - Set the plugin relative URL.
*
* Will be set based on the WordPress define `WP_PLUGIN_URL`.
*
* @since 2.1.4
* @uses WP_PLUGIN_URL
*
* @var string $value URL to plugin install directory.
*/
define( 'LEARNDASH_LMS_PLUGIN_URL', $learndash_plugin_url );
}
if ( ! defined( 'LEARNDASH_LMS_LIBRARY_DIR' ) ) {
/**
* Define LearnDash LMS - Set the plugin includes/lib path.
*
* Will be set based on the LearnDash define `LEARNDASH_LMS_PLUGIN_DIR`.
*
* @since 2.1.4
* @uses LEARNDASH_LMS_PLUGIN_DIR
*
* @var string $value Directory path to plugin includes/lib internal directory.
*/
define( 'LEARNDASH_LMS_LIBRARY_DIR', trailingslashit( LEARNDASH_LMS_PLUGIN_DIR ) . 'includes/lib' );
}
if ( ! defined( 'LEARNDASH_LMS_LIBRARY_URL' ) ) {
/**
* Define LearnDash LMS - Set the plugin includes/lib relative URL.
*
* Will be set based on the LearnDash define `LEARNDASH_LMS_PLUGIN_URL`.
*
* @since 2.1.4
* @uses LEARNDASH_LMS_PLUGIN_URL
*
* @var string $value URL to plugin includes/lib directory.
*/
define( 'LEARNDASH_LMS_LIBRARY_URL', trailingslashit( LEARNDASH_LMS_PLUGIN_URL ) . 'includes/lib' );
}
if ( ! defined( 'LEARNDASH_LMS_PLUGIN_KEY' ) ) {
$learndash_plugin_dir = LEARNDASH_LMS_PLUGIN_DIR;
$learndash_plugin_dir = basename( $learndash_plugin_dir ) . '/' . basename( __FILE__ );
/**
* Define LearnDash LMS - Set the plugin key.
*
* This define is the plugin directory and filename.
* directory.
*
* @since 2.3.1
*
* @var string $value Default value is `sfwd-lms/sfwd_lms.php`.
*/
define( 'LEARNDASH_LMS_PLUGIN_KEY', $learndash_plugin_dir );
}
if ( ! defined( 'LEARNDASH_OBJECT_CACHE_ENABLED' ) ) {
/**
* Define LearnDash LMS - Enabled support for object cache used for temporary storage.
*
* @since 3.4.1
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will enable object storage support. Default.
* @type bool false Will disable object cache support.
* }
*/
define( 'LEARNDASH_OBJECT_CACHE_ENABLED', true );
}
if ( ! defined( 'LEARNDASH_TRANSIENTS_DISABLED' ) ) {
/**
* Define LearnDash LMS - Enabled support for Transients used for temporary storage.
*
* @since 2.3.3 Initial value `false`.
* @since 3.4.0 Set to `true` as default to disable transients.
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will disable transient storage. Default.
* @type bool false Will enable transient storage.
* }
*/
define( 'LEARNDASH_TRANSIENTS_DISABLED', true );
}
if ( ! defined( 'LEARNDASH_REPORT_TRANSIENT_STORAGE' ) ) {
/**
* Define LearnDash LMS - Controls the Course/Quiz Report transient cache storage used.
*
* @since 3.4.1
* @deprecated 3.5.0 Use {@see 'LEARNDASH_TRANSIENT_CACHE_STORAGE'} instead.
*
* @var string|bool $value {
* Only one of the following values.
* @type bool false Default as of 3.5.0.
* @type string 'options' Will use the `wp_options` table.
* @type string 'file' Will save cache data in file within `wp-content/uploads/learndash/reports/`.
* }
*/
define( 'LEARNDASH_REPORT_TRANSIENT_STORAGE', false );
}
if ( ! defined( 'LEARNDASH_TRANSIENT_CACHE_STORAGE' ) ) {
$learndash_default_resource_transient_storage = 'file';
if ( ( defined( 'LEARNDASH_REPORT_TRANSIENT_STORAGE' ) ) && ( is_string( LEARNDASH_REPORT_TRANSIENT_STORAGE ) ) ) {
$learndash_default_resource_transient_storage = esc_attr( LEARNDASH_REPORT_TRANSIENT_STORAGE );
if ( ! in_array( $learndash_default_resource_transient_storage, array( 'file', 'options' ), true ) ) {
$learndash_default_resource_transient_storage = 'file';
}
}
/**
* Define LearnDash LMS - Controls Resource transient cache storage used.
*
* This is used for Data Upgrades, Reports, and other processing.
*
* @since 3.5.0
*
* @var string $value {
* Only one of the following values.
* @type string options Will use the wp_options table. Default.
* @type string file Will save cache data in file within `wp-content/uploads/learndash/reports/`.
* }
*/
define( 'LEARNDASH_TRANSIENT_CACHE_STORAGE', $learndash_default_resource_transient_storage );
}
if ( ! defined( 'LEARNDASH_DEBUG' ) ) {
/**
* Define LearnDash LMS - Enable debug message output.
*
* @since 2.5.9
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will output debug message similar to the WordPress WP_DEBUG define.
* @type bool false Default
* }
*/
define( 'LEARNDASH_DEBUG', false );
}
if ( ! defined( 'LEARNDASH_ERROR_REPORTING_ZERO' ) ) {
/**
* Define LearnDash LMS - Enable legacy error handling logic where the PHP
* error_reporting(0) was set.
*
* @since 3.4.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true Enable the function error_reporting(0) to be used. Legacy.
* @type bool false Default.
* }
*/
define( 'LEARNDASH_ERROR_REPORTING_ZERO', false );
}
if ( ! defined( 'LEARNDASH_SCRIPT_DEBUG' ) ) {
if ( ( defined( 'SCRIPT_DEBUG' ) ) && ( SCRIPT_DEBUG === true ) ) {
$learndash_define_script_debug_value = true;
} else {
$learndash_define_script_debug_value = false;
}
/**
* Define LearnDash LMS - Enable load of non-minified CSS/JS assets.
*
* If the WordPress SCRIPT_DEBUG or LearnDash LEARNDASH_SCRIPT_DEBUG
* are set then LEARNDASH_SCRIPT_DEBUG will also be set to (bool) true.
*
* @since 2.2.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true The non-minified versions of CSS/JS assets will be used.
* @type bool false The minified CSS/JS assets will be used. Default.
* }
*/
define( 'LEARNDASH_SCRIPT_DEBUG', $learndash_define_script_debug_value );
}
if ( ! defined( 'LEARNDASH_COURSE_FUNCTIONS_LEGACY' ) ) {
/**
* Define LearnDash LMS - Enabled legacy Course Progression and Query logic.
*
* This define will be removed in a future release.
*
* @since 3.4.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true The LD 3.3.x legacy course progression and query logic will be used.
* @type bool false The LD 3.4.x improved course progression and query logic will be used. Default.
* }
*/
define( 'LEARNDASH_COURSE_FUNCTIONS_LEGACY', false );
}
if ( ! defined( 'LEARNDASH_BUILDER_STEPS_UPDATE_POST' ) ) {
/**
* Define LearnDash LMS - Enables Controls the method used to update the builder step.
*
* @since 3.2.3
*
* @var bool $value {
* Only one of the following values.
* @type bool true Use the function `wp_update_post()` function.
* @type bool false Use the default `wpdb::update()` and `clean_post_cache()` functions. Default.
* }
*/
define( 'LEARNDASH_BUILDER_STEPS_UPDATE_POST', false );
}
if ( ! defined( 'LEARNDASH_SCRIPT_VERSION_TOKEN' ) ) {
if ( defined( 'LEARNDASH_SCRIPT_DEBUG' ) && ( LEARNDASH_SCRIPT_DEBUG === true ) ) {
$learndash_define_script_version_token_value = LEARNDASH_VERSION . '-' . time();
} else {
$learndash_define_script_version_token_value = LEARNDASH_VERSION;
}
/**
* Define LearnDash LMS - Sets a unique value to be appended to CSS/JS URLS.
*
* The default value is the plugin version `LEARNDASH_VERSION`. If `LEARNDASH_SCRIPT_DEBUG`
* is set to `true` the value will also append a timestamp ensuring a unique URL for each
* request.
*
* @since 2.5.0
*
* @uses LEARNDASH_SCRIPT_DEBUG
* @uses LEARNDASH_VERSION
*
* @var string $value Default is define `LEARNDASH_VERSION` value.
*/
define( 'LEARNDASH_SCRIPT_VERSION_TOKEN', $learndash_define_script_version_token_value );
}
if ( ! defined( 'LEARNDASH_FILTER_PRIORITY_THE_CONTENT' ) ) {
/**
* Define LearnDash LMS - Sets the priority when LearnDash hooks into the WordPress filter
* 'the_content' filter for the main course posts.
*
* @since 3.1.4
*
* @var int $value Default is 30.
*/
define( 'LEARNDASH_FILTER_PRIORITY_THE_CONTENT', 30 );
}
if ( ! defined( 'LEARNDASH_REST_API_ENABLED' ) ) {
/**
* Define LearnDash LMS - Enable support REST API.
*
* @since 2.5.8
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_REST_API_ENABLED', true );
}
if ( ! defined( 'LEARNDASH_BLOCK_WORDPRESS_CPT_ROUTES' ) ) {
/**
* Define LearnDash LMS - Enable block access to default WordPress CPT routes.
*
* Logic added to prevent access to the automatic routes created as part of
* WP core for Gutenberg enabled custom post types. This new logic will prevent
* visibility read access if used is not authenticated or does not have update
* capabilities.
*
* @since 3.2.0
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_BLOCK_WORDPRESS_CPT_ROUTES', true );
}
if ( ! defined( 'LEARNDASH_LESSON_VIDEO' ) ) {
/**
* Define LearnDash LMS - Enable support for Lesson/Topic Video Progression.
*
* @since 2.4.5
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_LESSON_VIDEO', true );
}
if ( ! defined( 'LEARNDASH_COURSE_BUILDER' ) ) {
/**
* Define LearnDash LMS - Enable support for Course Builder.
*
* @since 2.5.0
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_COURSE_BUILDER', true );
}
/**
* Define LearnDash LMS
*
* @ignore
*/
if ( ! defined( 'LEARNDASH_COURSE_STEPS_PRELOAD' ) ) {
define( 'LEARNDASH_COURSE_STEPS_PRELOAD', true );
}
if ( ! defined( 'LEARNDASH_QUIZ_BUILDER' ) ) {
/**
* Define LearnDash LMS - Enable support for Quiz Builder.
*
* @since 2.6.0
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_QUIZ_BUILDER', true );
}
if ( ! defined( 'LEARNDASH_BUILDER_DEBUG' ) ) {
/**
* Define LearnDash LMS - Enable load of non-minified CSS/JS assets for Builders.
*
* @since 3.0.0
*
* @var bool $value Default is false.
*/
define( 'LEARNDASH_BUILDER_DEBUG', false );
}
if ( ! defined( 'LEARNDASH_GUTENBERG' ) ) {
/**
* Define LearnDash LMS - Enable support for Gutenberg Editor.
*
* @since 2.5.8
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_GUTENBERG', true );
}
if ( ! defined( 'LEARNDASH_GUTENBERG_CONTENT_PARSE_LEGACY' ) ) {
/**
* Define LearnDash LMS - Use legacy content parse for Gutenberg block rendering.
*
* @since 4.0.0
*
* @var bool $value Default is false.
*/
define( 'LEARNDASH_GUTENBERG_CONTENT_PARSE_LEGACY', false );
}
if ( ! defined( 'LEARNDASH_TRANSLATIONS' ) ) {
/**
* Define LearnDash LMS - Enable support for Translations downloads via GlotPress.
*
* @since 2.5.2
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_TRANSLATIONS', true );
}
if ( ! defined( 'LEARNDASH_HTTP_REMOTE_GET_TIMEOUT' ) ) {
/**
* Define LearnDash LMS - Set timeout (seconds) on HTTP GET requests.
*
* @since 3.1.0
*
* @var int $value Default is 15.
*/
define( 'LEARNDASH_HTTP_REMOTE_GET_TIMEOUT', 15 );
}
if ( ! defined( 'LEARNDASH_HTTP_REMOTE_POST_TIMEOUT' ) ) {
/**
* Define LearnDash LMS - Set timeout (seconds) on HTTP POST requests.
*
* @since 3.1.0
*
* @var int $value Default is 15.
*/
define( 'LEARNDASH_HTTP_REMOTE_POST_TIMEOUT', 15 );
}
if ( ! defined( 'LEARNDASH_HTTP_BITBUCKET_README_DOWNLOAD_TIMEOUT' ) ) {
/**
* Define LearnDash LMS - Set timeout (seconds) for BitBucket Readme download_url() request.
*
* @since 3.1.8
*
* @var int $value Default is 15.
*/
define( 'LEARNDASH_HTTP_BITBUCKET_README_DOWNLOAD_TIMEOUT', 15 );
}
if ( defined( 'LEARNDASH_REPO_ERROR_THRESHOLD_COUNT' ) ) {
/**
* Define LearnDash LMS - Set the number of consecutive errors before update attempts abort.
*
* @since 3.1.8
*
* @var int $value Default is 3.
*/
define( 'LEARNDASH_REPO_ERROR_THRESHOLD_COUNT', 3 );
}
if ( defined( 'LEARNDASH_REPO_ERROR_THRESHOLD_TIME' ) ) {
/**
* Define LearnDash LMS - Set the time (seconds) after abort before restarting tries.
*
* @since 3.1.8
*
* @var int $value Default is 7200.
*/
define( 'LEARNDASH_REPO_ERROR_THRESHOLD_TIME', 2 * 60 * 60 );
}
if ( ! defined( 'LEARNDASH_LMS_DEFAULT_QUESTION_POINTS' ) ) {
/**
* Define LearnDash LMS - Set the default quiz question points.
*
* @since 2.1.6
*
* @var int $value Default is 1.
*/
define( 'LEARNDASH_LMS_DEFAULT_QUESTION_POINTS', 1 );
}
if ( ! defined( 'LEARNDASH_LMS_DEFAULT_ANSWER_POINTS' ) ) {
/**
* Define LearnDash LMS - Set the default quiz question answer points.
*
* @since 2.1.6
*
* @var int $value Default is 0.
*/
define( 'LEARNDASH_LMS_DEFAULT_ANSWER_POINTS', 0 );
}
if ( ! defined( 'LEARNDASH_LMS_DEFAULT_LAZY_LOAD_PER_PAGE' ) ) {
/**
* Define LearnDash LMS - Set the number of items to lazy load per AJAX request.
*
* @since 2.2.1
*
* @var int $value Default is 5000.
*/
define( 'LEARNDASH_LMS_DEFAULT_LAZY_LOAD_PER_PAGE', 5000 );
}
if ( ! defined( 'LEARNDASH_LMS_DEFAULT_DATA_UPGRADE_BATCH_SIZE' ) ) {
/**
* Define LearnDash LMS - Set the number of items for Data Upgrade batch.
*
* @since 2.6.0
*
* @var int $value Default is 1000.
*/
define( 'LEARNDASH_LMS_DEFAULT_DATA_UPGRADE_BATCH_SIZE', 1000 );
}
if ( ! defined( 'LEARNDASH_LMS_COURSE_STEPS_LOAD_BATCH_SIZE' ) ) {
/**
* Define LearnDash LMS - Set the number of course steps objects load batch size.
*
* Used when loading course step WP_Post objects. On a very large course attempting
* to load too many post objects via a single query can impact server performance.
*
* @since 3.4.0
*
* @var int $value Default is 500.
*/
define( 'LEARNDASH_LMS_COURSE_STEPS_LOAD_BATCH_SIZE', 500 );
}
if ( ! defined( 'LEARNDASH_LMS_DEFAULT_WIDGET_PER_PAGE' ) ) {
/**
* Define LearnDash LMS - Set the default number of items per page.
*
* @since 2.5.5
*
* @var int $value Default is 20.
*/
define( 'LEARNDASH_LMS_DEFAULT_WIDGET_PER_PAGE', 20 );
}
if ( ! defined( 'LEARNDASH_LMS_DEFAULT_CB_INSERT_CHUNK_SIZE' ) ) {
/**
* Define LearnDash LMS - Set the number of items to insert/update when saving builder data.
*
* This value controls the query insert/update logic and does not limit the number of steps.
*
* @since 2.5.0
*
* @var int $value Default is 10.
*/
define( 'LEARNDASH_LMS_DEFAULT_CB_INSERT_CHUNK_SIZE', 10 );
}
if ( ! defined( 'LEARNDASH_ADMIN_CAPABILITY_CHECK' ) ) {
/**
* Define LearnDash LMS - Set the Administrator role capability check.
*
* The value should match a role capability used to determine if a user is
* and Administrator user. Default is 'manage_options'.
*
* @since 2.3.0
*
* @var string $value Default is 'manage_options'.
*/
define( 'LEARNDASH_ADMIN_CAPABILITY_CHECK', 'manage_options' );
}
if ( ! defined( 'LEARNDASH_GROUP_LEADER_CAPABILITY_CHECK' ) ) {
/**
* Define LearnDash LMS - Set the Group Leader role capability check.
*
* The value should match a role capability used to determine if a user is
* a Group Leader user. Default is 'group_leader'.
*
* @since 2.3.0
*
* @var string $value Default is 'group_leader'.
*/
define( 'LEARNDASH_GROUP_LEADER_CAPABILITY_CHECK', 'group_leader' );
}
if ( ! defined( 'LEARNDASH_GROUP_LEADER_DASHBOARD_ACCESS' ) ) {
/**
* Define LearnDash LMS - Control Group Leader access to WP Dashboard with WooCommerce.
*
* Used by `learndash_check_group_leader_access`
*
* @since 2.3.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will allow Group Leader access to WP Dashboard. Default.
* @type bool false Will prevent Group Leader access to WP Dashboard.
* }
*/
define( 'LEARNDASH_GROUP_LEADER_DASHBOARD_ACCESS', true );
}
if ( ! defined( 'LEARNDASH_DEFAULT_THEME' ) ) {
/**
* Define LearnDash LMS - Set the default template used.
*
* This value is used to set the default theme on new installs.
*
* @since 3.0.0
*
* @var string $value Default is 'ld30'.
*/
define( 'LEARNDASH_DEFAULT_THEME', 'ld30' );
}
if ( ! defined( 'LEARNDASH_LEGACY_THEME' ) ) {
/**
* Define LearnDash LMS - Set the legacy template slug.
*
* @since 3.0.0
*
* @var string $value Default is 'legacy'.
*/
define( 'LEARNDASH_LEGACY_THEME', 'legacy' );
}
if ( ! defined( 'LEARNDASH_DEFAULT_COURSE_PRICE_TYPE' ) ) {
/**
* Define LearnDash LMS - Set the default course price type.
*
* @since 3.2.0
*
* @var string $value {
* Possible values one of the following.
* @type string open Price Type 'open'. Default.
* @type string free Price Type 'free'.
* @type string paynow Price Type 'paynow'.
* @type string subscribe Price Type 'subscribe'.
* @type string closed Price Type 'closed'.
* }
*/
define( 'LEARNDASH_DEFAULT_COURSE_PRICE_TYPE', 'open' );
}
if ( ! defined( 'LEARNDASH_DEFAULT_COURSE_ORDER' ) ) {
/**
* Define LearnDash LMS - Set the default course steps order. NOT USED
*
* @since 3.2.0
* @ignore
*
* @var string $value {
* Only one of the following values.
* @type string ASC Sort values Ascending. Default.
* @type string DESC Sort values Descending.
* }
*/
define( 'LEARNDASH_DEFAULT_COURSE_ORDER', 'ASC' );
}
if ( ! defined( 'LEARNDASH_DEFAULT_COURSE_ORDERBY' ) ) {
/**
* Define LearnDash LMS - Set the default course steps order by. NOT USED.
*
* @since 3.2.0
* @ignore
*
* @var string $value {
* Only one of the following values.
* @type string date Sort values by Date. Default.
* @type string menu_order Sort values by menu_order.
* @type string title Sort values by title.
* }
*/
define( 'LEARNDASH_DEFAULT_COURSE_ORDERBY', 'date' );
}
if ( ! defined( 'LEARNDASH_COURSE_STEP_READ_CHECK' ) ) {
/**
* Define LearnDash LMS - Enable logic to check if user can read course step WP_Post.
*
* @since 3.4.0.2
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_COURSE_STEP_READ_CHECK', true );
}
if ( ! defined( 'LEARNDASH_DEFAULT_GROUP_PRICE_TYPE' ) ) {
/**
* Define LearnDash LMS - Set the default group price type.
*
* @since 3.2.0
*
* @var string $value {
* Possible values one of the following.
* @type string closed Price Type 'closed'. Default.
* @type string free Price Type 'free'.
* @type string paynow Price Type 'paynow'.
* @type string subscribe Price Type 'subscribe'.
* }
*/
define( 'LEARNDASH_DEFAULT_GROUP_PRICE_TYPE', 'closed' );
}
if ( ! defined( 'LEARNDASH_DEFAULT_GROUP_ORDER' ) ) {
/**
* Define LearnDash LMS - Set the default groups courses display order.
*
* @since 3.2.0
*
* @var string $value {
* Only one of the following values.
* @type string ASC Sort values Ascending. Default.
* @type string DESC Sort values Descending.
* }
*/
define( 'LEARNDASH_DEFAULT_GROUP_ORDER', 'ASC' );
}
if ( ! defined( 'LEARNDASH_DEFAULT_GROUP_ORDERBY' ) ) {
/**
* Define LearnDash LMS - Set the default groups courses display order by.
*
* @since 3.2.0
*
* @var string $value {
* Only one of the following values.
* @type string date Sort values by Date. Default.
* @type string menu_order Sort values by menu_order.
* @type string title Sort values by title.
* }
*/
define( 'LEARNDASH_DEFAULT_GROUP_ORDERBY', 'date' );
}
if ( ! defined( 'LEARNDASH_QUIZ_RESULT_MESSAGE_MAX' ) ) {
/**
* Define LearnDash LMS - Set the maximum number of items used for the
* Quiz Result Message setting field.
*
* @since 3.0.0
*
* @var int $value Default is 15.
*/
define( 'LEARNDASH_QUIZ_RESULT_MESSAGE_MAX', 15 );
}
if ( ! defined( 'LEARNDASH_QUIZ_RESUME_COOKIE_SEND_TIMER_MIN' ) ) {
/**
* Define LearnDash LMS - Set the minimum second for sending quiz resume data to server.
*
* @since 3.6.1
*
* @var int $value Default is 5.
*/
define( 'LEARNDASH_QUIZ_RESUME_COOKIE_SEND_TIMER_MIN', 5 );
}
if ( ! defined( 'LEARNDASH_QUIZ_RESUME_COOKIE_SEND_TIMER_DEFAULT' ) ) {
/**
* Define LearnDash LMS - Set the default second for sending quiz resume data to server.
*
* @since 3.6.1
*
* @var int $value Default is 5.
*/
define( 'LEARNDASH_QUIZ_RESUME_COOKIE_SEND_TIMER_DEFAULT', 20 );
}
if ( ! defined( 'LEARNDASH_QUIZ_ANSWER_MESSAGE_HTML_TYPE' ) ) {
/**
* Define LearnDash LMS - Set the Quiz answer message wrapper
* HTML element type.
*
* @since 3.5.0
*
* @var string $value Default is 'div'.
*/
define( 'LEARNDASH_QUIZ_ANSWER_MESSAGE_HTML_TYPE', 'div' );
}
if ( ! defined( 'LEARNDASH_QUIZ_EXPORT_LEGACY' ) ) {
/**
* Define LearnDash LMS - Use the legacy WPProQuiz import/export logic
* using unserialize/serialize instead of newer json_decode/json_encode.
*
* @since 3.2.0
*
* @var bool $value Default is false.
*/
define( 'LEARNDASH_QUIZ_EXPORT_LEGACY', false );
}
if ( ! defined( 'LEARNDASH_QUIZ_PREREQUISITE_ALT' ) ) {
/**
* Define LearnDash LMS - Controls the Quiz Prerequisite
* handling.
*
* If `true` the user must pass the prerequisite
* quizzes. If `false` the user must have only taken
* the prerequisite quizzes but not required to pass
* them.
*
* @since 2.5.7
*
* @var bool $value Default is false.
*/
define( 'LEARNDASH_QUIZ_PREREQUISITE_ALT', true );
}
if ( ! defined( 'LEARNDASH_ADMIN_POPUP_STYLE' ) ) {
/**
* Define LearnDash LMS - Set the popup method used for items like the
* TinyMCE popup used for shortcodes.
*
* @since 3.0.7
*
* @var string $value {
* Only one of the following values.
* @type string 'jQuery-dialog' Default.
* @type string 'thickbox' Legacy thickbox popup.
* }
*/
define( 'LEARNDASH_ADMIN_POPUP_STYLE', 'jQuery-dialog' );
}
if ( ! defined( 'LEARNDASH_USE_WP_SAFE_REDIRECT' ) ) {
/**
* Define LearnDash LMS - Controls handling of redirects.
*
* @since 3.3.0.2
*
* @var bool $value {
* Only one of the following values.
* @type bool true Use the WP function `wp_safe_redirect`. Default.
* @type bool false Use the WP function `wp_redirect`.
* }
*/
define( 'LEARNDASH_USE_WP_SAFE_REDIRECT', true );
}
if ( ! defined( 'LEARNDASH_DISABLE_TEMPLATE_CONTENT_OUTSIDE_LOOP' ) ) {
/**
* Define LearnDash LMS - Controls filtering of 'the_content' outside of the 'loop'.
*
* @since 3.2.3
*
* @var bool $value {
* Only one of the following values.
* @type bool true If called outside the WP loop, content will not be processed. Default.
* @type bool false Content will be processed.
* }
*/
define( 'LEARNDASH_DISABLE_TEMPLATE_CONTENT_OUTSIDE_LOOP', true );
}
if ( ! defined( 'LEARNDASH_TEMPLATE_CONTENT_METHOD' ) ) {
/**
* Define LearnDash LMS - Controls the method the template content is rendered.
*
* @since 4.0.0
*
* @var string $value {
* Only one of the following values.
* @type string 'template' Content will be rendered via the template. This is the legacy/default method.
* @type string 'shortcode' Content will be rendered via shortcodes.
* }
*/
define( 'LEARNDASH_TEMPLATE_CONTENT_METHOD', 'shortcode' );
}
if ( ! defined( 'LEARNDASH_GROUP_ENROLLED_COURSE_FROM_USER_REGISTRATION' ) ) {
/**
* Define LearnDash LMS - Control the determination of the user's Group enrollment time.
*
* @since 3.2.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true Use the user's registration for the Group enrollment time, if newer. Default.
* @type bool false
* }
*/
define( 'LEARNDASH_GROUP_ENROLLED_COURSE_FROM_USER_REGISTRATION', true );
}
if ( ! defined( 'LEARNDASH_SELECT2_LIB' ) ) {
/**
* Define LearnDash LMS - Enable use of the Select2 jQuery library.
*
* The Select2 library is used on post type listings and within admin setting
* used by LearnDash.
*
* @since 3.0.0
*
* @var bool $value Default is true.
*/
define( 'LEARNDASH_SELECT2_LIB', true );
}
if ( ! defined( 'LEARNDASH_SELECT2_LIB_AJAX_FETCH' ) ) {
/**
* Define LearnDash LMS - Enable fetch logic as part of the Select2 library.
*
* Possible value:
* true (bool) Will enable callbacks to the server via AJAX to load selector
* items. This can improve performance. Default.
*
* The `LEARNDASH_SELECT2_LIB` define must be true.
*
* @since 3.2.3
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will enable callbacks to the server via AJAX to load selector. Default.
* @type bool false
* }
*/
define( 'LEARNDASH_SELECT2_LIB_AJAX_FETCH', true );
}
if ( ! defined( 'LEARNDASH_SETTINGS_METABOXES_LEGACY' ) ) {
/**
* Define LearnDash LMS - Enable legacy Post Type Settings Metaboxes.
*
* @since 3.0.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will use metabox containers when showing the settings outside of the post type editor. Default is true. Must be set to true.
* @type bool false Not supported.
* }
*/
define( 'LEARNDASH_SETTINGS_METABOXES_LEGACY', true );
}
if ( ! defined( 'LEARNDASH_SETTINGS_METABOXES_LEGACY_QUIZ' ) ) {
/**
* Define LearnDash LMS - Enable legacy WPProQuiz Post Type Settings Metaboxes.
*
* @since 3.0.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will show the legacy WPProQuiz linear listing of settings.
* @type bool false Will display Quiz Post settings using newer metabox containers. Default.
* }
*/
define( 'LEARNDASH_SETTINGS_METABOXES_LEGACY_QUIZ', false );
}
if ( ! defined( 'LEARNDASH_SETTINGS_HEADER_PANEL' ) ) {
/**
* Define LearnDash LMS - Enable the new (3.0.0) Header Panel.
*
* @since 3.0.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will show the LearnDash header panel on related admin pages. Default is true. Must be set to true.
* @type bool false Not supported.
* }
*/
define( 'LEARNDASH_SETTINGS_HEADER_PANEL', true );
}
if ( ! defined( 'LEARNDASH_SHOW_MARK_INCOMPLETE' ) ) {
/**
* Define LearnDash LMS - Enable the Mark Incomplete button on course steps. Beta.
*
* @since 3.1.4
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will display a button on completed course steps allowing the user. BETA.
* @type bool false Default.
* }
*/
define( 'LEARNDASH_SHOW_MARK_INCOMPLETE', false );
}
if ( ! defined( 'LEARNDASH_FILTER_SEARCH' ) ) {
/**
* Define LearnDash LMS - Enable search filter logic.
*
* @since 3.2.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will enable some logic to hook into the WP search processing.
* The logic can help filter display items to only show lessons, topics, etc.
* the user has access to. Default.
* @type bool false
* }
*/
define( 'LEARNDASH_FILTER_SEARCH', true );
}
if ( ! defined( 'LEARNDASH_LMS_DATABASE_PREFIX_SUB' ) ) {
/**
* Define LearnDash LMS - Set the default database prefix.
*
* This prefix is appended to the WP table prefix.
*
* @since 3.1.0
*
* @var string $value Default is 'learndash_'.
*/
define( 'LEARNDASH_LMS_DATABASE_PREFIX_SUB', 'learndash_' );
}
if ( ! defined( 'LEARNDASH_PROQUIZ_DATABASE_PREFIX_SUB_DEFAULT' ) ) {
/**
* Define LearnDash LMS - Set the default WPProQuiz database prefix.
*
* This prefix is appended to the WP table prefix.
*
* @since 3.1.0
*
* @var string $value Default is 'wp_'.
*/
define( 'LEARNDASH_PROQUIZ_DATABASE_PREFIX_SUB_DEFAULT', 'wp_' );
}
if ( ! defined( 'LEARNDASH_UPDATES_ENABLED' ) ) {
/**
* Define LearnDash LMS - Enable support to check for updates for Core and Add-ons.
*
* @since 3.1.8
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will enable calls to support.learndash.com and bitbucket.org to check for updates. Default.
* @type bool false Will disable outbound server calls.
* }
*/
define( 'LEARNDASH_UPDATES_ENABLED', true );
}
if ( ! defined( 'LEARNDASH_UPDATE_HTTP_METHOD' ) ) {
/**
* Define LearnDash LMS - Configure the HTTP method use to connect to the support/license server.
*
* @since 3.6.0.3
*
* @var string $value {
* Only one of the following values.
* @type string 'post' Use HTTP POST (wp_remote_post) to connect to the server. Default.
* @type string 'get' Use HTTP GET (wp_remote_get) to connect to the server. Default.
* }
*/
define( 'LEARNDASH_UPDATE_HTTP_METHOD', 'get' );
}
if ( ! defined( 'LEARNDASH_PLUGIN_LICENSE_INTERVAL' ) ) {
/**
* Define LearnDash LMS - Configure the interval for support license check.
*
* @since 3.6.0.3
*
* @var int $value number of minutes between license checks. Default is 3600 minutes (60 minutes).
*/
define( 'LEARNDASH_PLUGIN_LICENSE_INTERVAL', 3600 );
}
if ( ! defined( 'LEARNDASH_PLUGIN_LICENSE_OPTIONS_AUTOLOAD' ) ) {
/**
* Define LearnDash LMS - Configure the autoload options for licensing.
*
* @since 4.3.0
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will enable autoload options.
* @type bool false Will disable autoload options. Default.
* }
*/
define( 'LEARNDASH_PLUGIN_LICENSE_OPTIONS_AUTOLOAD', false );
}
if ( ! defined( 'LEARNDASH_PLUGIN_INFO_INTERVAL' ) ) {
/**
* Define LearnDash LMS - Configure the interval for support information check.
*
* @since 3.6.0.3
*
* @var int $value number of minutes between information checks. Default is 600 minutes (10 minutes).
*/
define( 'LEARNDASH_PLUGIN_INFO_INTERVAL', 600 );
}
if ( ! defined( 'LEARNDASH_ADDONS_UPDATER' ) ) {
$learndash_define_addons_updater_value = true;
if ( defined( 'LEARNDASH_UPDATES_ENABLED' ) ) {
$learndash_define_addons_updater_value = (bool) LEARNDASH_UPDATES_ENABLED;
}
/**
* Define LearnDash LMS - Enable support for Add-ons.
*
* @since 2.5.5
*
* @var bool $value {
* Only one of the following values.
* @type bool true Will enable new menu items and install/update of related Add-ons. Default.
* @type bool false
* }
*/
define( 'LEARNDASH_ADDONS_UPDATER', $learndash_define_addons_updater_value );
}
/**
* LearnDash License utility class.
*/
require_once dirname( __FILE__ ) . '/includes/ld-license.php';
if ( ! defined( 'LEARNDASH_LICENSE_PANEL_SHOW' ) ) {
$learndash_show_license_panel = ! learndash_is_learndash_hub_active();
/**
* Define LearnDash LMS - Show license panel.
*
* @since 4.3.0.2
*
* @var bool $value {
* Only one of the following values.
* @type bool true License panel/tab will be visible. Default.
* @type bool false License panel/tab will not be visible.
* }
*/
define( 'LEARNDASH_LICENSE_PANEL_SHOW', $learndash_show_license_panel );
}
/**
* LearnDash Database utility class.
*/
require_once dirname( __FILE__ ) . '/includes/class-ldlms-db.php';
/**
* LearnDash Post Types utility class.
*/
require_once dirname( __FILE__ ) . '/includes/class-ldlms-post-types.php';
/**
* LearnDash Transients utility class.
*/
require_once dirname( __FILE__ ) . '/includes/class-ldlms-transients.php';
/**
* The module base class; handles settings, options, menus, metaboxes, etc.
*/
require_once dirname( __FILE__ ) . '/includes/class-ld-semper-fi-module.php';
/**
* SFWD_LMS
*/
require_once dirname( __FILE__ ) . '/includes/class-ld-lms.php';
/**
* Register CPT's and Taxonomies
*/
require_once dirname( __FILE__ ) . '/includes/class-ld-cpt.php';
/**
* Search
*/
if ( ( defined( 'LEARNDASH_FILTER_SEARCH' ) ) && ( LEARNDASH_FILTER_SEARCH === true ) ) {
require_once dirname( __FILE__ ) . '/includes/class-ld-search.php';
}
/**
* LearnDash Admin File Download handler
*/
require_once dirname( __FILE__ ) . '/includes/admin/class-learndash-admin-file-download-handler.php';
Learndash_Admin_File_Download_Handler::init();
/**
* Register CPT's and Taxonomies
*/
require_once dirname( __FILE__ ) . '/includes/class-ld-cpt-instance.php';
/**
* LearnDash Menus and Tabs logic
*/
require_once LEARNDASH_LMS_PLUGIN_DIR . 'includes/admin/class-learndash-admin-menus-tabs.php';
/**
* Widget loader.
*/
require_once dirname( __FILE__ ) . '/includes/widgets/widgets-loader.php';
/**
* Course Legacy functions
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-course-functions-legacy.php';
/**
* Course functions
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-course-functions.php';
/**
* Course Steps functions
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-course-steps-functions.php';
/**
* Course User functions
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-course-user-functions.php';
/**
* Course Activity functions
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-activity-functions.php';
/**
* Course navigation
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-course-navigation.php';
/**
* Course progress functions
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-course-progress.php';
/**
* Course info and navigation widgets
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-course-info-widget.php';
/**
* Course metaboxes.
*/
require_once dirname( __FILE__ ) . '/includes/course/ld-course-metaboxes.php';
/**
* Quiz metaboxes.
*/
require_once dirname( __FILE__ ) . '/includes/quiz/ld-quiz-metaboxes.php';
/**
* Quiz and Question functions
*/
require_once dirname( __FILE__ ) . '/includes/quiz/ld-quiz-functions.php';
/**
* Implements WP Pro Quiz
*/
require_once dirname( __FILE__ ) . '/includes/quiz/ld-quiz-pro.php';
/**
* Quiz essay question functions
*/
require_once dirname( __FILE__ ) . '/includes/quiz/ld-quiz-essays.php';
/**
* Load scripts & styles
*/
require_once dirname( __FILE__ ) . '/includes/ld-scripts.php';
/**
* Customizations to wp editor for LearnDash
*/
require_once dirname( __FILE__ ) . '/includes/ld-wp-editor.php';
/**
* Handles assignment uploads and includes helper functions for assignments
*/
require_once dirname( __FILE__ ) . '/includes/ld-assignment-uploads.php';
/**
* Group functions
*/
require_once dirname( __FILE__ ) . '/includes/ld-groups.php';
/**
* Exam functions
*/
require_once dirname( __FILE__ ) . '/includes/exam/ld-exam-functions.php';
/**
* Coupon functions
*/
require_once dirname( __FILE__ ) . '/includes/coupon/ld-coupon-functions.php';
/**
* Group Membership functions
*/
require_once dirname( __FILE__ ) . '/includes/group/ld-groups-membership.php';
/**
* User functions
*/
require_once dirname( __FILE__ ) . '/includes/ld-users.php';
/**
* Certificate functions
*/
require_once dirname( __FILE__ ) . '/includes/ld-certificates.php';
/**
* Misc functions
*/
require_once dirname( __FILE__ ) . '/includes/ld-misc-functions.php';
/**
* WP-admin functions
*/
require_once dirname( __FILE__ ) . '/includes/admin/ld-admin.php';
/**
* Course Builder Helpers.
*/
require_once dirname( __FILE__ ) . '/includes/admin/ld-course-builder-helpers.php';
/**
* Quiz Builder Helpers.
*/
require_once dirname( __FILE__ ) . '/includes/admin/ld-quiz-builder-helpers.php';
/**
* Gutenberg Customization.
*/
require_once dirname( __FILE__ ) . '/includes/admin/ld-gutenberg.php';
/**
* LearnDash Settings Page Base
*/
require_once dirname( __FILE__ ) . '/includes/settings/settings-loader.php';
/**
* LearnDash Registration Form Functions
*/
require_once LEARNDASH_LMS_PLUGIN_DIR . '/includes/payments/ld-login-registration-functions.php';
/**
* LearnDash Emails Functions
*/
require_once dirname( __FILE__ ) . '/includes/payments/ld-emails-functions.php';
/**
* LearnDash Payments Functions
*/
require_once dirname( __FILE__ ) . '/includes/payments/ld-payments-functions.php';
/**
* LearnDash Transactions Functions
*/
require_once dirname( __FILE__ ) . '/includes/payments/ld-transaction-functions.php';
/**
* LearnDash Shortcodes Base
*/
require_once dirname( __FILE__ ) . '/includes/shortcodes/shortcodes-loader.php';
/**
* Custom label
*/
require_once dirname( __FILE__ ) . '/includes/class-ld-custom-label.php';
/**
* Binary Selector
*/
require_once dirname( __FILE__ ) . '/includes/admin/class-learndash-admin-binary-selector.php';
/**
* Data/System Upgrades
*/
require_once dirname( __FILE__ ) . '/includes/admin/class-learndash-admin-data-upgrades.php';
/**
* Reports
*/
require_once dirname( __FILE__ ) . '/includes/admin/class-learndash-admin-settings-data-reports.php';
/**
* Reports Functions
*/
require_once dirname( __FILE__ ) . '/includes/ld-reports.php';
/**
* Permalinks
*/
require_once dirname( __FILE__ ) . '/includes/class-ld-permalinks.php';
/**
* GDPR
*/
require_once dirname( __FILE__ ) . '/includes/class-ld-gdpr.php';
/**
* Core Updater
*/
require_once dirname( __FILE__ ) . '/includes/ld-autoupdate.php';
// @phpstan-ignore-next-line
if ( ( true === (bool) LEARNDASH_ADDONS_UPDATER ) && ( true === (bool) LEARNDASH_UPDATES_ENABLED ) ) {
require_once dirname( __FILE__ ) . '/includes/class-ld-addons-updater.php';
} else {
/**
* Added a dummy class if/when auto_update is disabled.
* To prevent fatal errors.
*/
if ( ! class_exists( 'LearnDash_Addon_Updater' ) ) {
/**
* Dummy class
*
* @ignore
*/
class LearnDash_Addon_Updater {
/**
* Instance
*
* @var object
* @ignore
*/
protected static $instance = null;
/**
* Get instance
*
* @ignore
*/
public static function get_instance() {
// @phpstan-ignore-next-line
if ( ! isset( static::$instance ) ) {
static::$instance = new self();
}
return static::$instance;
}
/**
* Call
*
* @param string $name Name.
* @param array $arguments Arguments.
*
* @ignore
*/
public function __call( $name, $arguments ) {
// phpcs:ignore Squiz.PHP.NonExecutableCode.ReturnNotRequired
return;
}
}
}
}
/**
* Translations
*/
if ( ( defined( 'LEARNDASH_TRANSLATIONS' ) ) && ( LEARNDASH_TRANSLATIONS === true ) ) {
require_once dirname( __FILE__ ) . '/includes/class-ld-translations.php';
if ( ! defined( 'LEARNDASH_TRANSLATIONS_URL_BASE' ) ) {
/**
* Define LearnDash LMS - Set the Translation server URL.
*
* @since 2.5.2
* @internal
* @var string $value Default is 'https://translations.learndash.com'.
*/
define( 'LEARNDASH_TRANSLATIONS_URL_BASE', 'https://translations.learndash.com' );
}
if ( ! defined( 'LEARNDASH_TRANSLATIONS_URL_CACHE' ) ) {
/**
* Define LearnDash LMS - Set the Translation cache timeout.
*
* This controls how often the plugin will call out to the translations
* server to check for updates.
*
* @since 2.5.2
*
* @var string $value Default is number of seconds in a 24 hour period (86.400).
*/
define( 'LEARNDASH_TRANSLATIONS_URL_CACHE', DAY_IN_SECONDS );
}
}
/**
* Registers Shortcodes.
*/
require_once dirname( __FILE__ ) . '/includes/settings/class-ld-shortcodes-tinymce.php';
/**
* Add Support for Themes.
*/
require_once LEARNDASH_LMS_PLUGIN_DIR . 'themes/themes-loader.php';
/**
* Add Support for the LD LMS Post Factory.
*/
require_once LEARNDASH_LMS_PLUGIN_DIR . '/includes/classes/class-loader.php';
/**
* Support for the LearnDash action scheduler wrapper
*/
require_once dirname( __FILE__ ) . '/includes/admin/class-learndash-admin-action-scheduler.php';
Learndash_Admin_Action_Scheduler::init_ld_scheduler();
/**
* Add Support for the Admin filters.
*/
require_once LEARNDASH_LMS_PLUGIN_DIR . 'includes/admin/classes-filters/class-learndash-admin-filters.php';
/**
* Add Support for the LD Bulk edit.
*/
require_once LEARNDASH_LMS_PLUGIN_DIR . 'includes/admin/classes-bulk-edit-actions/class-learndash-admin-bulk-edit-actions.php';
/**
* Registers REST API Hooks.
*/
require_once dirname( __FILE__ ) . '/includes/rest-api/class-ld-rest-api.php';
/**
* Load our Import/Export Utilities
*/
require_once dirname( __FILE__ ) . '/includes/import/import-loader.php';
/**
* Support for Video Progression
*/
if ( ( defined( 'LEARNDASH_LESSON_VIDEO' ) ) && ( LEARNDASH_LESSON_VIDEO === true ) ) {
require_once dirname( __FILE__ ) . '/includes/course/ld-course-video.php';
}
/**
* Support for cloning utilities
*/
require_once dirname( __FILE__ ) . '/includes/admin/ld-cloning.php';
/**
* Import/Export
*/
require_once dirname( __FILE__ ) . '/includes/admin/ld-import-export.php';
/**
* Support for Course and/or Quiz Builder
*/
require_once dirname( __FILE__ ) . '/includes/admin/class-learndash-admin-builder.php';
/**
* Support for Gutenberg Editor
*/
if ( ( defined( 'LEARNDASH_GUTENBERG' ) ) && ( LEARNDASH_GUTENBERG === true ) ) {
require_once dirname( __FILE__ ) . '/includes/gutenberg/index.php';
}
/**
* LearnDash Deprecated Functions/Classes
*/
require_once dirname( __FILE__ ) . '/includes/deprecated/deprecated-functions.php';
/**
* Globals that hold CPT's and Pages to be set up
*/
global $learndash_taxonomies, $learndash_pages, $learndash_question_types;
$learndash_taxonomies = array(
'ld_course_category',
'ld_course_tag',
'ld_lesson_category',
'ld_lesson_tag',
'ld_topic_category',
'ld_topic_tag',
'ld_quiz_category',
'ld_quiz_tag',
'ld_question_category',
'ld_question_tag',
'ld_group_category',
'ld_group_tag',
);
$learndash_pages = array(
'group_admin_page',
'learndash-lms-reports',
);
// This is a global variable which is set in any of the shortcode handler functions.
// The purpose is to let the plugin know when and if the any of the shortcodes were used.
global $learndash_shortcode_used;
$learndash_shortcode_used = false;
global $learndash_shortcode_atts;
$learndash_shortcode_atts = array();
/**
* Metaboxes registered for settings pages etc.
*/
global $learndash_metaboxes;
$learndash_metaboxes = array();
global $learndash_assets_loaded;
$learndash_assets_loaded = array();
$learndash_assets_loaded['styles'] = array();
$learndash_assets_loaded['scripts'] = array();