PATH:
home
/
letacommog
/
letacommunication
/
wp-content
/
plugins
/
elementor-pro
/
core
/
app
/
modules
/
kit-library
<?php namespace ElementorPro\Core\App\Modules\KitLibrary; use ElementorPro\Plugin; use ElementorPro\License\API; use Elementor\Core\Base\Module as BaseModule; use ElementorPro\Core\Connect\Apps\Activate; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Module extends BaseModule { /** * Get name. * * @access public * * @return string */ public function get_name() { return 'kit-library'; } private function set_kit_library_settings() { $common = Plugin::elementor()->common; $app = Plugin::elementor()->app; $prev_settings = $app->get_settings( 'kit-library' ); // BC Support. if ( ! $prev_settings || ! $common ) { return; } /** @var Activate $activate */ $activate = $common->get_component( 'connect' )->get_app( 'activate' ); $app->set_settings( 'kit-library', array_merge( $prev_settings, [ 'is_pro' => true, 'is_library_connected' => API::is_license_active(), 'library_connect_url' => $activate->get_admin_url( 'authorize' ), 'access_level' => API::get_library_access_level( 'kit' ), ] ) ); } public function __construct() { add_action( 'elementor/init', function () { $this->set_kit_library_settings(); }, 13 /** after elementor core */ ); } }
[+]
..
[-] module.php
[edit]