first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<?php
/**
* Integration for KingComposer
*
* @package PUM
* @copyright Copyright (c) 2023, Code Atlantic LLC
*/
class PUM_Integration_Builder_KingComposer extends PUM_Abstract_Integration {
/**
* @var string
*/
public $key = 'kingcomposer';
/**
* @var string
*/
public $type = 'builder';
/**
* @return string
*/
public function label() {
return 'King Composer';
}
/**
* @return bool
*/
public function enabled() {
return class_exists( 'KingComposer' ) || defined( 'KC_VERSION' );
}
}

View File

@@ -0,0 +1,35 @@
<?php
/**
* Integration for VisualComposer
*
* @package PUM
* @copyright Copyright (c) 2023, Code Atlantic LLC
*/
class PUM_Integration_Builder_VisualComposer extends PUM_Abstract_Integration {
/**
* @var string
*/
public $key = 'visualcomposer';
/**
* @var string
*/
public $type = 'builder';
/**
* @return string
*/
public function label() {
return 'Visual Composer';
}
/**
* @return bool
*/
public function enabled() {
return defined( 'WPB_VC_VERSION' ) || defined( 'FL_BUILDER_VERSION' );
}
}