File "submissions-promotion-menu-item.php"
Full Path: /home/tekvhqgl/public_html/wp-content/plugins/elementor-pro/modules/forms/submissions/admin-menu-items/submissions-promotion-menu-item.php
File size: 1.4 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace ElementorPro\Modules\Forms\Submissions\AdminMenuItems;
use Elementor\Modules\Promotions\AdminMenuItems\Base_Promotion_Item;
use Elementor\Settings;
use ElementorPro\License\API;
use ElementorPro\Plugin;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
class Submissions_Promotion_Menu_Item extends Base_Promotion_Item {
public function get_label() {
return esc_html__( 'Submissions', 'elementor-pro' );
}
public function get_page_title() {
return esc_html__( 'Submissions', 'elementor-pro' );
}
public function get_cta_url() {
$connect_url = Plugin::instance()->license_admin->get_connect_url( [
'utm_source' => 'wp-dash-submissions',
'utm_medium' => 'wp-dash',
'utm_campaign' => 'connect-and-activate-license',
] );
$renew_url = 'https://go.elementor.com/renew-submissions/';
return API::is_license_expired()
? $renew_url
: $connect_url;
}
public function get_cta_text() {
return API::is_license_expired()
? esc_html__( 'Renew now', 'elementor-pro' )
: esc_html__( 'Connect & Activate', 'elementor-pro' );
}
public function get_promotion_title() {
return esc_html__( 'Collect Your Form Submissions', 'elementor-pro' );
}
public function render_promotion_description() {
echo esc_html__(
'Save and manage all of your form submissions in one single place. All within a simple, intuitive place.',
'elementor-pro'
);
}
}