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

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

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