PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.13.1
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.13.1
2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 All 80 releases
← All changes | includes/helper.php +8 -0 2.12.02.13.1 View file →
@@ -309,8 +309,16 @@
309 309 }
310 310 public static function is_active_quizpress() {
311 311 return class_exists( 'QuizPress' );
312 312 }
313 + public static function is_active_zencommunity() {
314 + $zencommunity = 'zencommunity/zencommunity.php';
315 + return self::is_plugin_active( $zencommunity );
316 + }
317 + public static function is_active_gemboards() {
318 + $gemboards = 'gemboards/gemboards.php';
319 + return self::is_plugin_active( $gemboards );
320 + }
313 321 public static function is_active_easy_content_manager() {
314 322 return class_exists( 'EasyContentManager' );
315 323 }
316 324