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 / learnpress / learnpress.php

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

172 lines 4.6 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 - LearnPress integration
4 * Plugin URI: https://automatorwp.com/add-ons/learnpress/
5 * Description: Connect AutomatorWP with LearnPress.
6 * Version: 1.0.4
7 * Author: AutomatorWP
8 * Author URI: https://automatorwp.com/
9 * Text Domain: automatorwp-learnpress-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\LearnPress
16 * @author AutomatorWP
17 * @copyright Copyright (c) AutomatorWP
18 */
19
20 final class AutomatorWP_Integration_LearnPress {
21
22 /**
23 * @var AutomatorWP_Integration_LearnPress $instance The one true AutomatorWP_Integration_LearnPress
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_LearnPress self::$instance The one true AutomatorWP_Integration_LearnPress
34 */
35 public static function instance() {
36 if( !self::$instance ) {
37 self::$instance = new AutomatorWP_Integration_LearnPress();
38
39 if( ! self::$instance->pro_installed() ) {
40
41 self::$instance->constants();
42 self::$instance->includes();
43
44 }
45
46 self::$instance->hooks();
47 }
48
49 return self::$instance;
50 }
51
52 /**
53 * Setup plugin constants
54 *
55 * @access private
56 * @since 1.0.0
57 * @return void
58 */
59 private function constants() {
60 // Plugin version
61 define( 'AUTOMATORWP_LEARNPRESS_VER', '1.0.4' );
62
63 // Plugin file
64 define( 'AUTOMATORWP_LEARNPRESS_FILE', __FILE__ );
65
66 // Plugin path
67 define( 'AUTOMATORWP_LEARNPRESS_DIR', plugin_dir_path( __FILE__ ) );
68
69 // Plugin URL
70 define( 'AUTOMATORWP_LEARNPRESS_URL', plugin_dir_url( __FILE__ ) );
71 }
72
73 /**
74 * Include plugin files
75 *
76 * @access private
77 * @since 1.0.0
78 * @return void
79 */
80 private function includes() {
81
82 if( $this->meets_requirements() ) {
83
84 // Triggers
85 require_once AUTOMATORWP_LEARNPRESS_DIR . 'includes/triggers/complete-quiz.php';
86 require_once AUTOMATORWP_LEARNPRESS_DIR . 'includes/triggers/complete-lesson.php';
87 require_once AUTOMATORWP_LEARNPRESS_DIR . 'includes/triggers/complete-course.php';
88
89 // Actions
90 require_once AUTOMATORWP_LEARNPRESS_DIR . 'includes/actions/user-course.php';
91
92 }
93 }
94
95 /**
96 * Setup plugin hooks
97 *
98 * @access private
99 * @since 1.0.0
100 * @return void
101 */
102 private function hooks() {
103
104 add_action( 'automatorwp_init', array( $this, 'register_integration' ) );
105
106 }
107
108 /**
109 * Registers this integration
110 *
111 * @since 1.0.0
112 */
113 function register_integration() {
114
115 automatorwp_register_integration( 'learnpress', array(
116 'label' => 'LearnPress',
117 'icon' => plugin_dir_url( __FILE__ ) . 'assets/learnpress.svg',
118 ) );
119
120 }
121
122 /**
123 * Check if there are all plugin requirements
124 *
125 * @since 1.0.0
126 *
127 * @return bool True if installation meets all requirements
128 */
129 private function meets_requirements() {
130
131 if ( ! class_exists( 'AutomatorWP' ) ) {
132 return false;
133 }
134
135 if ( ! class_exists( 'LearnPress' ) ) {
136 return false;
137 }
138
139 return true;
140
141 }
142
143 /**
144 * Check if the pro version of this integration is installed
145 *
146 * @since 1.0.0
147 *
148 * @return bool True if pro version installed
149 */
150 private function pro_installed() {
151
152 if ( ! class_exists( 'AutomatorWP_LearnPress' ) ) {
153 return false;
154 }
155
156 return true;
157
158 }
159
160 }
161
162 /**
163 * The main function responsible for returning the one true AutomatorWP_Integration_LearnPress instance to functions everywhere
164 *
165 * @since 1.0.0
166 * @return \AutomatorWP_Integration_LearnPress The one true AutomatorWP_Integration_LearnPress
167 */
168 function AutomatorWP_Integration_LearnPress() {
169 return AutomatorWP_Integration_LearnPress::instance();
170 }
171 add_action( 'automatorwp_pre_init', 'AutomatorWP_Integration_LearnPress' );
172