/home/techb158/public_html/wp-content/plugins/elementor/modules/pro-install
Edit: /home/techb158/public_html/wp-content/plugins/elementor/modules/pro-install/module.php (2508B)
register_app( 'pro-install', Connect::get_class_name() );
} );
add_action( 'elementor/editor-one/menu/excluded_level3_slugs', function ( array $excluded_slugs ): array {
$excluded_slugs[] = 'elementor-connect';
return $excluded_slugs;
} );
add_action( 'elementor/editor-one/menu/register', function( Menu_Data_Provider $menu_data_provider ) {
$menu_data_provider->register_menu(
new Editor_One_Connect_Account_Menu_Item(
$this->get_connect_app(),
$this->get_pro_install_page_assets()
)
);
} );
}
private function get_connect_app(): Connect {
return Plugin::$instance->common->get_component( 'connect' )->get_app( 'pro-install' );
}
public function admin_post_elementor_do_pro_install() {
if ( ! current_user_can( 'install_plugins' ) ) {
wp_die( esc_html__( 'You do not have sufficient permissions to access this page.', 'elementor' ) );
}
check_admin_referer( 'elementor_do_pro_install' );
$app = $this->get_connect_app();
$download_link = $app->get_download_link();
if ( empty( $download_link ) ) {
wp_die( esc_html__( 'There are no available subscriptions at the moment.', 'elementor' ) );
}
$plugin_installer = new Plugin_Installer( 'elementor-pro', $download_link );
$response = $plugin_installer->install();
if ( is_wp_error( $response ) ) {
wp_die( esc_html( $response->get_error_message() ) );
}
wp_safe_redirect( admin_url( 'admin.php?page=elementor-license' ) );
}
private function get_pro_install_page_assets(): array {
return [
'elementor-pro-install-events',
$this->get_js_assets_url( 'pro-install-events' ),
[ 'elementor-common' ],
ELEMENTOR_VERSION,
true,
];
}
}