PluginProbe
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI / 6.0.2
AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI v6.0.2
6.0.2 6.0.1 6.0.0 5.8.6 5.8.5 5.8.4 5.8.3 5.8.2 5.8.1 5.8.0 5.7.9.2 5.7.9.1 5.7.8 5.7.9 5.7.6 5.7.7 5.7.5 5.7.4 5.7.3 5.7.2 5.7.1 trunk 5.6.0 5.6.1 5.6.2 All 33 releases
automatorwp / integrations / learndash / learndash.php

learndash.php in AutomatorWP – No-Code Workflow Automation, Integration & Webhooks Plugin, now with AI 6.0.2, at integrations/learndash/learndash.php

181 lines 5.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: AutomatorWP - LearnDash integration
4 * Plugin URI: https://automatorwp.com/add-ons/learndash/
5 * Description: Connect AutomatorWP with LearnDash.
6 * Version: 1.0.4
7 * Author: AutomatorWP
8 * Author URI: https://automatorwp.com/
9 * Text Domain: automatorwp-learndash-integration
10 * Domain Path: /languages/
11 * Requires at least: 4.4
12 * Tested up to: 5.7
13 * License: GNU AGPL v3.0 (http://www.gnu.org/licenses/agpl.txt)
14 *
15 * @package AutomatorWP\LearnDash
16 * @author AutomatorWP
17 * @copyright Copyright (c) AutomatorWP
18 */
19
20 final class AutomatorWP_Integration_LearnDash {
21
22 /**
23 * @var AutomatorWP_Integration_LearnDash $instance The one true AutomatorWP_Integration_LearnDash
24 * @since 1.0.0
25 */
26 private static $instance;
27
28 /**
29 * Get active instance
30 *
31 * @access public
32 * @since 1.0.0
33 * @return AutomatorWP_Integration_LearnDash self::$instance The one true AutomatorWP_Integration_LearnDash
34 */
35 public static function instance() {
36 if( !self::$instance ) {
37 self::$instance = new AutomatorWP_Integration_LearnDash();
38 self::$instance->constants();
39 self::$instance->includes();
40 self::$instance->hooks();
41 }
42
43 return self::$instance;
44 }
45
46 /**
47 * Setup plugin constants
48 *
49 * @access private
50 * @since 1.0.0
51 * @return void
52 */
53 private function constants() {
54 // Plugin version
55 define( 'AUTOMATORWP_LEARNDASH_VER', '1.0.4' );
56
57 // Plugin file
58 define( 'AUTOMATORWP_LEARNDASH_FILE', __FILE__ );
59
60 // Plugin path
61 define( 'AUTOMATORWP_LEARNDASH_DIR', plugin_dir_path( __FILE__ ) );
62
63 // Plugin URL
64 define( 'AUTOMATORWP_LEARNDASH_URL', plugin_dir_url( __FILE__ ) );
65 }
66
67 /**
68 * Include plugin files
69 *
70 * @access private
71 * @since 1.0.0
72 * @return void
73 */
74 private function includes() {
75
76 if( $this->meets_requirements() && ! $this->pro_installed() ) {
77
78 // Triggers
79 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/view-quiz.php';
80 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/view-lesson.php';
81 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/view-topic.php';
82 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/view-course.php';
83 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/complete-quiz.php';
84 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/complete-quiz-percentage.php';
85 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/complete-topic.php';
86 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/complete-lesson.php';
87 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/triggers/complete-course.php';
88
89 // Actions
90 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/actions/mark-topic.php';
91 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/actions/mark-lesson.php';
92 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/actions/user-course.php';
93 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/actions/mark-course.php';
94 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/actions/create-group.php';
95 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/actions/user-group.php';
96 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/actions/user-group-leader.php';
97
98 // Includes
99 require_once AUTOMATORWP_LEARNDASH_DIR . 'includes/functions.php';
100
101 }
102 }
103
104 /**
105 * Setup plugin hooks
106 *
107 * @access private
108 * @since 1.0.0
109 * @return void
110 */
111 private function hooks() {
112
113 add_action( 'automatorwp_init', array( $this, 'register_integration' ) );
114
115 }
116
117 /**
118 * Registers this integration
119 *
120 * @since 1.0.0
121 */
122 function register_integration() {
123
124 automatorwp_register_integration( 'learndash', array(
125 'label' => 'LearnDash',
126 'icon' => plugin_dir_url( __FILE__ ) . 'assets/learndash.svg',
127 ) );
128
129 }
130
131 /**
132 * Check if there are all plugin requirements
133 *
134 * @since 1.0.0
135 *
136 * @return bool True if installation meets all requirements
137 */
138 private function meets_requirements() {
139
140 if ( ! class_exists( 'AutomatorWP' ) ) {
141 return false;
142 }
143
144 if ( ! class_exists( 'SFWD_LMS' ) ) {
145 return false;
146 }
147
148 return true;
149
150 }
151
152 /**
153 * Check if the pro version of this integration is installed
154 *
155 * @since 1.0.0
156 *
157 * @return bool True if pro version installed
158 */
159 private function pro_installed() {
160
161 if ( ! class_exists( 'AutomatorWP_LearnDash' ) ) {
162 return false;
163 }
164
165 return true;
166
167 }
168
169 }
170
171 /**
172 * The main function responsible for returning the one true AutomatorWP_Integration_LearnDash instance to functions everywhere
173 *
174 * @since 1.0.0
175 * @return \AutomatorWP_Integration_LearnDash The one true AutomatorWP_Integration_LearnDash
176 */
177 function AutomatorWP_Integration_LearnDash() {
178 return AutomatorWP_Integration_LearnDash::instance();
179 }
180 add_action( 'automatorwp_pre_init', 'AutomatorWP_Integration_LearnDash' );
181