PluginProbe
Elementor Website Builder – more than just a page builder / 3.25.3
Elementor Website Builder – more than just a page builder v3.25.3
4.3.2 4.3.1 4.3.0 4.3.0-beta3 4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 All 455 releases
elementor / modules / promotions / admin-menu-items / form-submissions-promotion-item.php

form-submissions-promotion-item.php in Elementor Website Builder – more than just a page builder 3.25.3, at modules/promotions/admin-menu-items/form-submissions-promotion-item.php

51 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Elementor\Modules\Promotions\AdminMenuItems;
4
5 if ( ! defined( 'ABSPATH' ) ) {
6 exit; // Exit if accessed directly
7 }
8
9 class Form_Submissions_Promotion_Item extends Base_Promotion_Template {
10 public function get_name() {
11 return 'submissions';
12 }
13
14 public function get_label() {
15 return esc_html__( 'Submissions', 'elementor' );
16 }
17
18 public function get_page_title() {
19 return esc_html__( 'Submissions', 'elementor' );
20 }
21
22 public function get_promotion_title():string {
23 return sprintf(
24 /* translators: %s: br */
25 esc_html__( 'Create Forms and Collect Leads %s with Elementor Pro', 'elementor' ),
26 '<br />'
27 );
28 }
29
30 protected function get_content_lines(): array {
31 return [
32 esc_html__( 'Create single or multi-step forms to engage and convert visitors', 'elementor' ),
33 esc_html__( 'Use any field to collect the information you need', 'elementor' ),
34 esc_html__( 'Integrate your favorite marketing software*', 'elementor' ),
35 esc_html__( 'Collect lead submissions directly within your WordPress Admin to manage, analyze and perform bulk actions on the submitted lead*', 'elementor' ),
36 ];
37 }
38
39 protected function get_cta_url():string {
40 return 'https://go.elementor.com/go-pro-submissions/';
41 }
42
43 protected function get_video_url():string {
44 return 'https://www.youtube-nocookie.com/embed/LNfnwba9C-8?si=JLHk3UAexnvTfU1a';
45 }
46
47 protected function get_side_note():string {
48 return esc_html__( '* Requires an Advanced subscription or higher', 'elementor' );
49 }
50 }
51