1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
<?php /** * Form Embed Wizard. * Embed popup HTML template. * * @since 1.6.2 */
if ( ! \defined( 'ABSPATH' ) ) { exit; }
$pages_exists = (int) wp_count_posts( 'page' )->publish > 0;
?> <div id="wpforms-admin-form-embed-wizard-container" class="wpforms-admin-popup-container"> <div id="wpforms-admin-form-embed-wizard" class="wpforms-admin-popup" data-pages-exists="<?php echo esc_attr( $pages_exists ); ?>"> <div class="wpforms-admin-popup-content"> <h3><?php esc_html_e( 'Embed in a Page', 'wpforms-lite' ); ?></h3> <div id="wpforms-admin-form-embed-wizard-content-initial"> <p class="no-gap"><b><?php esc_html_e( 'We can help embed your form with just a few clicks!', 'wpforms-lite' ); ?></b></p> <p><?php esc_html_e( 'Would you like to embed your form in an existing page, or create a new one?', 'wpforms-lite' ); ?></p> </div> <div id="wpforms-admin-form-embed-wizard-content-select-page" style="display: none;"> <p><?php esc_html_e( 'Select the page you would like to embed your form in.', 'wpforms-lite' ); ?></p> </div> <div id="wpforms-admin-form-embed-wizard-content-create-page" style="display: none;"> <p><?php esc_html_e( 'What would you like to call the new page?', 'wpforms-lite' ); ?></p> </div> <div id="wpforms-admin-form-embed-wizard-section-btns" class="wpforms-admin-popup-bottom"> <button type="button" data-action="select-page" class="wpforms-admin-popup-btn"><?php esc_html_e( 'Select Existing Page', 'wpforms-lite' ); ?></button> <button type="button" data-action="create-page" class="wpforms-admin-popup-btn"><?php esc_html_e( 'Create New Page', 'wpforms-lite' ); ?></button> </div> <div id="wpforms-admin-form-embed-wizard-section-go" class="wpforms-admin-popup-bottom wpforms-admin-popup-flex" style="display: none;"> <?php wp_dropdown_pages( [ 'show_option_none' => esc_html__( 'Select a Page', 'wpforms-lite' ), 'id' => 'wpforms-admin-form-embed-wizard-select-page', 'name' => '', ] ); ?> <input type="text" id="wpforms-admin-form-embed-wizard-new-page-title" value="" placeholder="<?php esc_attr_e( 'Name Your Page', 'wpforms-lite' ); ?>"> <button type="button" data-action="go" class="wpforms-admin-popup-btn"><?php esc_html_e( 'Let’s Go!', 'wpforms-lite' ); ?></button> </div> <div id="wpforms-admin-form-embed-wizard-section-toggles" class="wpforms-admin-popup-bottom"> <p class="secondary"> <?php printf( wp_kses( /* translators: %1$s - Video tutorial toggle CSS classes, %2$s - shortcode toggle CSS classes. */ __( 'You can also <a href="#" class="%1$s">embed your form manually</a> or <a href="#" class="%2$s">use a shortcode</a>', 'wpforms-lite' ), [ 'a' => [ 'href' => [], 'class' => [], ], ] ), 'tutorial-toggle wpforms-admin-popup-toggle', 'shortcode-toggle wpforms-admin-popup-toggle' ); ?> </p> <?php $video_id = wpforms_is_gutenberg_active() ? '_29nTiDvmLw' : 'IxGVz3AjEe0'; ?> <iframe style="display: none;" src="https://youtube.com/embed/<?php echo esc_attr( $video_id ); ?>?rel=0&showinfo=0" frameborder="0" id="wpforms-admin-form-embed-wizard-tutorial" allowfullscreen width="450" height="256"></iframe> <div id="wpforms-admin-form-embed-wizard-shortcode-wrap" style="display: none;"> <input type="text" id="wpforms-admin-form-embed-wizard-shortcode" class="wpforms-admin-popup-shortcode" disabled /> <span id="wpforms-admin-form-embed-wizard-shortcode-copy" title="<?php esc_attr_e( 'Copy embed code to clipboard', 'wpforms-lite' ); ?>"> <i class="fa fa-files-o" aria-hidden="true"></i> </span> </div> </div> <div id="wpforms-admin-form-embed-wizard-section-goback" class="wpforms-admin-popup-bottom" style="display: none;"> <p class="secondary"> <a href="#" class="wpforms-admin-popup-toggle initialstate-toggle">« <?php esc_html_e( 'Go back', 'wpforms-lite' ); ?></a> </p> </div> </div> <div class="wpforms-admin-popup-close">×</div> </div> </div>
|