at path:
ROOT
/
wp-content
/
plugins
/
tutor
/
tutor.php
run:
R
W
Run
assets
DIR
2026-04-14 05:34:25
R
W
Run
cache
DIR
2026-04-14 05:34:26
R
W
Run
classes
DIR
2026-04-14 05:34:26
R
W
Run
ecommerce
DIR
2026-04-14 05:34:27
R
W
Run
helpers
DIR
2026-04-14 05:34:27
R
W
Run
includes
DIR
2026-04-14 05:34:27
R
W
Run
languages
DIR
2026-04-14 05:34:27
R
W
Run
migrations
DIR
2026-04-14 05:34:27
R
W
Run
models
DIR
2026-04-14 05:34:27
R
W
Run
restapi
DIR
2026-04-14 05:34:27
R
W
Run
template-import
DIR
2026-04-14 05:34:27
R
W
Run
templates
DIR
2026-04-14 05:34:27
R
W
Run
traits
DIR
2026-04-14 05:34:27
R
W
Run
vendor
DIR
2026-04-14 05:34:27
R
W
Run
views
DIR
2026-04-14 05:34:27
R
W
Run
readme.txt
53.86 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
tutor.php
1.56 KB
2026-04-14 05:34:27
R
W
Run
Delete
Rename
error_log
up
📄
tutor.php
Save
<?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.9 * Author URI: https://themeum.com * Requires PHP: 7.4 * Requires at least: 5.3 * Tested up to: 6.9 * 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.9' ); 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();