first commit

This commit is contained in:
Ryan Ariana
2024-05-06 11:04:37 +07:00
commit aee061ddba
7322 changed files with 2918816 additions and 0 deletions

View 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';
}
}

View File

@@ -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';
}
}

View File

@@ -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();
}
}

View File

@@ -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';
}
}

View File

@@ -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';
}
}