STRATO-apps/wordpress_03/app/wp-content/plugins/tutor-pro/addons/enrollments/enrollments.php
SHA-256: 132060ab561b052ff7cb84083ec7678cd743d2cb1c8f9933cc6bb15f33b17dd4
<?php
/**
* Enrollment Addon
*
* @package TutorPro\Addons
* @subpackage Enrollment
* @author Themeum <support@themeum.com>
* @link https://themeum.com
* @since 2.0.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Defined the tutor main file
*/
define( 'TUTOR_ENROLLMENTS_VERSION', '1.0.0' );
define( 'TUTOR_ENROLLMENTS_FILE', __FILE__ );
add_filter( 'tutor_addons_lists_config', 'tutor_enrollments_config' );
/**
* Showing config for addons central lists
*
* @param array $config config.
*
* @return array
*/
function tutor_enrollments_config( $config ) {
$new_config = array(
'name' => __( 'Enrollment', 'tutor-pro' ),
'description' => __( 'Enable to manually enroll students in your courses.', 'tutor-pro' ),
);
$basic_config = (array) TUTOR_ENROLLMENTS();
$new_config = array_merge( $new_config, $basic_config );
$config[ plugin_basename( TUTOR_ENROLLMENTS_FILE ) ] = $new_config;
return $config;
}
if ( ! function_exists( 'TUTOR_ENROLLMENTS' ) ) {
/**
* Enrollment addon helper
*
* @return object
*/
//phpcs:ignore
function TUTOR_ENROLLMENTS() {
$info = array(
'path' => plugin_dir_path( TUTOR_ENROLLMENTS_FILE ),
'url' => plugin_dir_url( TUTOR_ENROLLMENTS_FILE ),
'basename' => plugin_basename( TUTOR_ENROLLMENTS_FILE ),
'version' => TUTOR_ENROLLMENTS_VERSION,
'nonce_action' => 'tutor_nonce_action',
'nonce' => '_wpnonce',
);
return (object) $info;
}
}
require 'classes/init.php';
new \TUTOR_ENROLLMENTS\Init();