Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/optinmonster/views/ |
Upload File : |
<?php if ( empty( $data['campaigns']['inline'] ) ) { echo '<p>'; printf( wp_kses( /* translators: %s - OptinMonster Templates page. */ __( 'Whoops, you haven\'t created an inline campaign yet. Want to <a href="%s">give it a go</a>?', 'optin-monster-api' ), array( 'a' => array( 'href' => array(), ), ) ), esc_url( $data['templatesUri'] . '&type=inline' ) ); echo '</p>'; return; } printf( '<p><label for="optin-monster-modal-select-inline-campaign">%s</label></p>', esc_html__( 'Select and display your email marketing form or smart call-to-action campaign', 'optin-monster-api' ) ); echo '<select id="optin-monster-modal-select-inline-campaign">'; foreach ( $data['campaigns']['inline'] as $slug => $name ) { printf( '<option value="%s">%s</option>', esc_attr( $slug ), esc_html( $name ) ); } echo '</select>'; echo '<p class="optin-monster-modal-notice">'; printf( wp_kses( /* translators: %s - OptinMonster documentation URL. */ __( 'Or <a href="%s" target="_blank" rel="noopener noreferrer">create a new inline campaign</a> to embed in this post', 'optin-monster-api' ), array( 'a' => array( 'href' => array(), 'rel' => array(), 'target' => array(), ), ) ), esc_url( $data['templatesUri'] . '&type=inline' ) ); echo '</p>';