/home/nbcgowuy/tnclms.com/wp-content/plugins/tutor/tutor.php
<?php
/**
* Plugin Name: Tutor LMS
* Plugin URI: https://tutorlms.com
* Description: Tutor is a complete solution for creating a Learning Management System in WordPress way. It can help you to create small to large scale online education site very conveniently. Power features like report, certificate, course preview, private file sharing make Tutor a robust plugin for any educational institutes.
* Author: Themeum
* Version: 3.9.1
* Author URI: https://themeum.com
* Requires PHP: 7.4
* Requires at least: 5.3
* Tested up to: 6.8
* License: GPLv2 or later
* Text Domain: tutor
*
* @package Tutor
*/
use TUTOR\Tutor;
defined( 'ABSPATH' ) || exit;
require_once __DIR__ . '/vendor/autoload.php';
/**
* Constants for tutor plugin.
*
* @since 1.0.0
*/
define( 'TUTOR_VERSION', '3.9.1' );
define( 'TUTOR_FILE', __FILE__ );
/**
* Load text domain for translations.
*
* @since 1.0.0
*/
add_action( 'init', fn () => load_plugin_textdomain( 'tutor', false, basename( __DIR__ ) . '/languages' ) );
/**
* Do some task during activation
*
* @since 1.5.2
* @since 2.6.2 Uninstall hook registered
*/
register_activation_hook( TUTOR_FILE, array( Tutor::class, 'tutor_activate' ) );
register_deactivation_hook( TUTOR_FILE, array( Tutor::class, 'tutor_deactivation' ) );
register_uninstall_hook( TUTOR_FILE, array( Tutor::class, 'tutor_uninstall' ) );
if ( ! function_exists( 'tutor_lms' ) ) {
/**
* Run main instance of the Tutor
*
* @since 1.2.0
*
* @return Tutor
*/
function tutor_lms() {
return Tutor::get_instance();
}
}
$GLOBALS['tutor'] = tutor_lms();