You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
979 B
PHP
39 lines
979 B
PHP
<?php
|
|
|
|
namespace Elementor\Modules\Promotions\AdminMenuItems;
|
|
|
|
use Elementor\TemplateLibrary\Source_Local;
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Exit if accessed directly
|
|
}
|
|
|
|
class Popups_Promotion_Item extends Base_Promotion_Item {
|
|
public function get_parent_slug() {
|
|
return Source_Local::ADMIN_MENU_SLUG;
|
|
}
|
|
|
|
public function get_label() {
|
|
return esc_html__( 'Popups', 'elementor' );
|
|
}
|
|
|
|
public function get_page_title() {
|
|
return esc_html__( 'Popups', 'elementor' );
|
|
}
|
|
|
|
public function get_promotion_title() {
|
|
return esc_html__( 'Get Popup Builder', 'elementor' );
|
|
}
|
|
|
|
public function render_promotion_description() {
|
|
echo esc_html__(
|
|
'The Popup Builder lets you take advantage of all the amazing features in Elementor, so you can build beautiful & highly converting popups. Get Elementor Pro and start designing your popups today.',
|
|
'elementor'
|
|
);
|
|
}
|
|
|
|
public function get_cta_url() {
|
|
return 'https://go.elementor.com/go-pro-popup-builder/';
|
|
}
|
|
}
|