| Server IP : 172.67.133.75 / Your IP : 104.23.197.161 Web Server : nginx/1.26.1 System : Linux HE9229 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64 User : www ( 1000) PHP Version : 8.0.26 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/jl3_ph_com/wp-content/plugins/elementor/includes/admin-templates/ |
Upload File : |
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
$user = wp_get_current_user();
$ajax = Plugin::$instance->common->get_component( 'ajax' );
$beta_tester_email = $user->user_email;
/**
* Print beta tester dialog.
*
* Display a dialog box to suggest the user to opt-in to the beta testers newsletter.
*
* Fired by `admin_footer` filter.
*
* @since 2.6.0
* @access public
*/
?>
<script type="text/template" id="tmpl-elementor-beta-tester">
<form id="elementor-beta-tester-form" method="post">
<?php // PHPCS - This is a nonce, doesn't need to be escaped. ?>
<input type="hidden" name="_nonce" value="<?php echo $ajax->create_nonce(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>">
<input type="hidden" name="action" value="elementor_beta_tester_signup" />
<div id="elementor-beta-tester-form__caption"><?php echo esc_html__( 'Get Beta Updates', 'elementor' ); ?></div>
<div id="elementor-beta-tester-form__description"><?php echo esc_html__( 'As a beta tester, you’ll receive an update that includes a testing version of Elementor and its content directly to your Email', 'elementor' ); ?></div>
<div id="elementor-beta-tester-form__input-wrapper">
<input id="elementor-beta-tester-form__email" name="beta_tester_email" type="email" placeholder="<?php echo esc_attr__( 'Your Email', 'elementor' ); ?>" required value="<?php echo esc_attr( $beta_tester_email ); ?>" />
<button id="elementor-beta-tester-form__submit" class="elementor-button">
<span class="elementor-state-icon">
<i class="eicon-loading eicon-animation-spin" aria-hidden="true"></i>
</span>
<?php echo esc_html__( 'Sign Up', 'elementor' ); ?>
</button>
</div>
<div id="elementor-beta-tester-form__terms">
<?php
printf(
/* translators: 1. "Terms of service" link, 2. "Privacy policy" link */
esc_html__( 'By clicking Sign Up, you agree to Elementor\'s %1$s and %2$s', 'elementor' ),
sprintf(
'<a href="%1$s" target="_blank">%2$s</a>',
esc_url( Beta_Testers::NEWSLETTER_TERMS_URL ),
esc_html__( 'Terms of Service', 'elementor' )
),
sprintf(
'<a href="%1$s" target="_blank">%2$s</a>',
esc_url( Beta_Testers::NEWSLETTER_PRIVACY_URL ),
esc_html__( 'Privacy Policy', 'elementor' )
)
)
?>
</div>
</form>
</script>