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,36 @@
<?php
namespace ElementorPro\Modules\CustomCode\AdminMenuItems;
use Elementor\Core\Admin\Menu\Interfaces\Admin_Menu_Item;
use Elementor\Settings;
use ElementorPro\Modules\CustomCode\Module as CustomCodeModule;
use ElementorPro\License\API;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Custom_Code_Menu_Item implements Admin_Menu_Item {
const LICENSE_FEATURE_NAME = 'custom_code';
public function get_capability() {
return CustomCodeModule::CAPABILITY;
}
public function get_label() {
return esc_html__( 'Custom Code', 'elementor-pro' );
}
public function get_parent_slug() {
return Settings::PAGE_ID;
}
public function get_position() {
return null;
}
public function is_visible() {
return API::is_licence_has_feature( static::LICENSE_FEATURE_NAME, API::BC_VALIDATION_CALLBACK );
}
}

View File

@@ -0,0 +1,90 @@
<?php
namespace ElementorPro\Modules\CustomCode\AdminMenuItems;
use ElementorPro\License\API;
use ElementorPro\Modules\Tiers\AdminMenuItems\Base_Promotion_Template;
use ElementorPro\Plugin;
use ElementorPro\Modules\CustomCode\Module as Custom_Code_Module;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Custom_Code_Promotion_Menu_Item extends Base_Promotion_Template {
public function get_name(): string {
return 'custom-code-promotion';
}
public function get_cta_url(): string {
if ( ! API::active_licence_has_feature( Custom_Code_Module::MODULE_NAME ) ) {
$upgrade_url = 'https://go.elementor.com/go-pro-advanced-custom-code/';
return $upgrade_url;
}
$connect_url = Plugin::instance()->license_admin->get_connect_url( [
'utm_source' => 'custom-code',
'utm_medium' => 'wp-dash',
'utm_campaign' => 'connect-and-activate-license',
] );
$renew_url = 'https://go.elementor.com/renew-custom-code/';
return API::is_license_expired()
? $renew_url
: $connect_url;
}
public function get_cta_text() {
if ( ! API::active_licence_has_feature( Custom_Code_Module::MODULE_NAME ) ) {
return esc_html__( 'Upgrade Now', 'elementor-pro' );
}
return API::is_license_expired()
? esc_html__( 'Renew now', 'elementor-pro' )
: esc_html__( 'Connect & Activate', 'elementor-pro' );
}
public function get_label() {
return $this->get_page_title();
}
public function get_page_title() {
return esc_html__( 'Custom Code', 'elementor-pro' );
}
public function get_promotion_title(): string {
return sprintf( esc_html__( 'Enjoy Creative Freedom %s with Custom Code', 'elementor-pro' ), '<br />' );
}
public function get_video_url(): string {
return 'https://www.youtube-nocookie.com/embed/IOovQd1hJUg?si=JLHk3UAexnvTfU1a';
}
public function get_promotion_description() {
return esc_html__(
'Add Custom Code snippets to your website.',
'elementor-pro'
);
}
public function get_side_note(): string {
return esc_html__( '* Requires an Advanced subscription or higher', 'elementor-pro' );
}
/**
* @deprecated use get_promotion_description instead
* @return void
*/
public function render_promotion_description() {
echo $this->get_promotion_description(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
protected function get_content_lines(): array {
return [
esc_html__( 'Add Custom Code snippets anywhere on your website, including the header or footer to measure your pages performance*', 'elementor-pro' ),
esc_html__( 'Use Custom Code to create sophisticated custom interactions to engage visitors', 'elementor-pro' ),
esc_html__( 'Leverage Elementor AI to instantly generate Custom Code for Elementor', 'elementor-pro' ),
];
}
}