HEX
Server: nginx/1.18.0
System: Linux m1-ws1-ams3 5.4.0-148-generic #165-Ubuntu SMP Tue Apr 18 08:53:12 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /opt/aphex/sites/cm4rums.com/wp-content/plugins/sikshya/sikshya.php
<?php
/**
 *  Plugin Name:     Sikshya
 *  Version:         0.0.6
 *  Plugin URI:      https://wordpress.org/plugins/sikshya
 *  Description:     Sikshya is free Learning management system (LMS) for WordPress. It helps to create course, lessons, quizzes, questions and answers for your online course system.
 *  Author:          mantrabrain
 *  Author URI:      https://mantrabrain.com
 *  Text Domain:     sikshya
 *  Domain Path:     /languages/
 **/


define('SIKSHYA_FILE', __FILE__);

// Define SIKSHYA_VERSION.
if (!defined('SIKSHYA_VERSION')) {
    define('SIKSHYA_VERSION', '0.0.6');
}

// Include the main Mantrabrain Starter Sites class.
if (!class_exists('Sikshya')) {
    include_once dirname(__FILE__) . '/includes/class-sikshya.php';
}

/**
 * Main instance of Mantrabrain Sikshya
 *
 * Returns the main instance to prevent the need to use globals.
 *
 * @since 1.0.0
 * @return Sikshya
 */
function sikshya()
{
    return Sikshya::instance();
}


$GLOBALS['sikshya'] = sikshya();