first commit
This commit is contained in:
20
wp-content/plugins/elementor/core/app/app.php
Normal file
20
wp-content/plugins/elementor/core/app/app.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
namespace Elementor\Core\App;
|
||||
|
||||
use Elementor\Core\Base\App as BaseApp;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly.
|
||||
}
|
||||
|
||||
/**
|
||||
* This App class was introduced for backwards compatibility with 3rd parties.
|
||||
*/
|
||||
class App extends BaseApp {
|
||||
|
||||
const PAGE_ID = 'elementor-app';
|
||||
|
||||
public function get_name() {
|
||||
return 'app-bc';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
namespace Elementor\App\Modules\ImportExport;
|
||||
|
||||
use Elementor\App\Modules\ImportExport\Module as Import_Export_Module;
|
||||
use Elementor\Core\Base\Module as BaseModule;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly
|
||||
}
|
||||
|
||||
/**
|
||||
* This App class exists for backwards compatibility with 3rd parties.
|
||||
*
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
class Module extends BaseModule {
|
||||
|
||||
/**
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
const VERSION = '1.0.0';
|
||||
|
||||
/**
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
public $import;
|
||||
|
||||
/**
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
public function get_name() {
|
||||
return 'import-export-bc';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
namespace Elementor\Core\App\Modules\KitLibrary\Connect;
|
||||
|
||||
use Elementor\App\Modules\KitLibrary\Connect\Kit_Library as Kit_Library_Connect;
|
||||
use Elementor\Core\Common\Modules\Connect\Apps\Library;
|
||||
use Elementor\Plugin;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly
|
||||
}
|
||||
|
||||
/**
|
||||
* This App class exists for backwards compatibility with 3rd parties.
|
||||
*
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
class Kit_Library extends Library {
|
||||
|
||||
/**
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
public function is_connected() {
|
||||
/** @var Kit_Library_Connect $kit_library */
|
||||
$kit_library = Plugin::$instance->common->get_component( 'connect' )->get_app( 'kit-library' );
|
||||
|
||||
return $kit_library && $kit_library->is_connected();
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
namespace Elementor\Core\App\Modules\KitLibrary;
|
||||
|
||||
use Elementor\Core\Base\Module as BaseModule;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly
|
||||
}
|
||||
|
||||
/**
|
||||
* This App class exists for backwards compatibility with 3rd parties.
|
||||
*
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
class Module extends BaseModule {
|
||||
|
||||
/**
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
const VERSION = '1.0.0';
|
||||
|
||||
/**
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
public function get_name() {
|
||||
return 'kit-library-bc';
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
namespace Elementor\Core\App\Modules\Onboarding;
|
||||
|
||||
use Elementor\Core\Base\Module as BaseModule;
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) {
|
||||
exit; // Exit if accessed directly
|
||||
}
|
||||
|
||||
/**
|
||||
* This App class exists for backwards compatibility with 3rd parties.
|
||||
*
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
class Module extends BaseModule {
|
||||
|
||||
/**
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
const VERSION = '1.0.0';
|
||||
|
||||
/**
|
||||
* @deprecated 3.8.0
|
||||
*/
|
||||
public function get_name() {
|
||||
return 'onboarding-bc';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user