whoami7 - Manager
:
/
home
/
n170823s
/
public_html
/
nvq3electrician.com
/
wp-content
/
plugins
/
tutor
/
classes
/
Upload File:
files >> //home/n170823s/public_html/nvq3electrician.com/wp-content/plugins/tutor/classes/Addons.php
<?php /** * Manage Addons * * @package Tutor * @author Themeum <support@themeum.com> * @link https://themeum.com * @since 1.0.0 */ namespace TUTOR; if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Addons Class * * @since 1.0.0 */ class Addons { /** * Constructor * * @since 1.0.0 * @return void */ public function __construct() { add_filter( 'tutor_pro_addons_lists_for_display', array( $this, 'tutor_addons_lists_to_show' ) ); } /** * Get tutor addons list * * @since 1.0.0 * @return array */ public function tutor_addons_lists_to_show() { $addons = array( 'course-bundle' => array( 'name' => __( 'Course Bundle', 'tutor' ), 'description' => __( 'Group multiple courses to sell together.', 'tutor' ), ), 'social-login' => array( 'name' => __( 'Social Login', 'tutor' ), 'description' => __( 'Let users register & login through social network like Facebook, Google, etc.', 'tutor' ), ), 'content-drip' => array( 'name' => __( 'Content Drip', 'tutor' ), 'description' => 'Unlock lessons by schedule or when the student meets specific condition.', ), 'tutor-multi-instructors' => array( 'name' => __( 'Tutor Multi Instructors', 'tutor' ), 'description' => 'Start a course with multiple instructors by Tutor Multi Instructors', ), 'tutor-assignments' => array( 'name' => __( 'Tutor Assignments', 'tutor' ), 'description' => 'Tutor assignments is a great way to assign tasks to students.', ), 'tutor-course-preview' => array( 'name' => __( 'Tutor Course Preview', 'tutor' ), 'description' => 'Unlock some lessons for students before enrollment.', ), 'tutor-course-attachments' => array( 'name' => __( 'Tutor Course Attachments', 'tutor' ), 'description' => 'Add unlimited attachments/ private files to any Tutor course', ), 'google-meet' => array( 'name' => __( 'Tutor Google Meet Integration', 'tutor' ), 'description' => __( 'Connect Tutor LMS with Google Meet to host live online classes. Students can attend live classes right from the lesson page.', 'tutor' ), ), 'tutor-report' => array( 'name' => __( 'Tutor Report', 'tutor' ), 'description' => 'Check your course performance through Tutor Report stats.', ), 'tutor-email' => array( 'name' => __( 'Tutor E-Mail', 'tutor' ), 'description' => 'Send email on various tutor events', ), 'calendar' => array( 'name' => 'Calendar', 'description' => 'Allow students to see everything in a calendar view in the front dashboard.', ), 'tutor-notifications' => array( 'name' => 'Notifications', 'description' => 'Get On Site and Push Notifications on specified tutor events.', ), 'google-classroom' => array( 'name' => __( 'Google Classroom Integration', 'tutor' ), 'description' => __( 'Helps connect Google Classrooms with Tutor LMS courses, allowing you to use features like Classroom streams and files directly from the Tutor LMS course.', 'tutor' ), ), 'tutor-zoom' => array( 'name' => __( 'Tutor Zoom Integration', 'tutor' ), 'description' => __( 'Connect Tutor LMS with Zoom to host live online classes. Students can attend live classes right from the lesson page.', 'tutor' ), ), 'quiz-import-export' => array( 'name' => __( 'Quiz Export/Import', 'tutor' ), 'description' => __( 'Save time by exporting/importing quiz data with easy options.', 'tutor' ), ), 'enrollments' => array( 'name' => __( 'Enrollment', 'tutor' ), 'description' => 'Take advanced control on enrollment. Enroll the student manually.', ), 'tutor-certificate' => array( 'name' => __( 'Tutor Certificate', 'tutor' ), 'description' => 'Students will be able to download a certificate after course completion.', ), 'gradebook' => array( 'name' => __( 'Gradebook', 'tutor' ), 'description' => 'Shows student progress from assignment and quiz', ), 'tutor-prerequisites' => array( 'name' => __( 'Tutor Prerequisites', 'tutor' ), 'description' => 'Specific course you must complete before you can enroll new course by Tutor Prerequisites', ), 'buddypress' => array( 'name' => __( 'BuddyPress', 'tutor' ), 'description' => 'Discuss about course and share your knowledge with your friends through BuddyPress', ), 'wc-subscriptions' => array( 'name' => __( 'WooCommerce Subscriptions', 'tutor' ), 'description' => 'Capture Residual Revenue with Recurring Payments.', ), 'pmpro' => array( 'name' => __( 'Paid Memberships Pro', 'tutor' ), 'description' => 'Maximize revenue by selling membership access to all of your courses.', ), 'restrict-content-pro' => array( 'name' => __( 'Restrict Content Pro', 'tutor' ), 'description' => 'Unlock Course depending on Restrict Content Pro Plugin Permission.', ), 'tutor-weglot' => array( 'name' => 'Weglot', 'description' => __( 'Translate & manage multilingual courses for global reach with full edit control.', 'tutor' ), ), 'tutor-wpml' => array( 'name' => __( 'WPML Multilingual CMS', 'tutor' ), 'description' => __( 'Create multilingual courses, lessons, dashboard and more for a global audience.', 'tutor' ), ), ); return $addons; } }
Copyright ©2021 || Defacer Indonesia