PATH:
home
/
letacommog
/
letacommunication
/
wp-content
/
plugins
/
mailin
/
inc
<?php /** * Page to preview form */ $sib_form_id = isset($_GET['sib_form']) ? esc_attr($_GET['sib_form']) : ''; $sib_preview = isset($_GET['action']) ? esc_attr($_GET['action']) : ''; wp_head(); ?> <body style="background-color: #f5f5f5;"> <div id="page" class="site" style="padding:16px;"> <div id="sib-preview-form"> <?php if($sib_preview == '') { $formData = SIB_Forms::getForm($sib_form_id); } else { $formData = get_option(SIB_Manager::PREVIEW_OPTION_NAME, array()); } if( isset( $formData['gCaptcha'] ) && '0' != $formData['gCaptcha'] ) { if( '1' == $formData['gCaptcha'] ) { // For old forms. $formData['html'] = preg_replace( '/([\s\S]*?)<div class="g-recaptcha"[\s\S]*?data-size="invisible"><\/div>/', '$1', $formData['html'] ); } if ( '3' == $formData['gCaptcha'] ) { // The case of using google recaptcha. ?> <script type="text/javascript"> var onloadSibCallback = function() { grecaptcha.render('sib_captcha',{ 'sitekey' : '<?php echo $formData["gCaptcha_site"] ?>' }); }; </script> <?php } else { // The case of using google invisible recaptcha. ?> <script type="text/javascript"> var onloadSibCallback = function() { var element = document.getElementsByClassName('sib-default-btn'); grecaptcha.render(element[0],{ 'sitekey' : '<?php echo $formData["gCaptcha_site"] ?>', 'callback' : sibVerifyCallback }); }; </script> <?php } ?> <script src="https://www.google.com/recaptcha/api.js?onload=onloadSibCallback&render=explicit" async defer></script> <?php } $html = stripslashes_deep($formData['html']); $css = stripslashes_deep($formData['css']); echo $html; ?> </div> <style> <?php if($formData['dependTheme'] != '1'){ $css = str_replace('[form]', '#sib-preview-form', $css); echo $css; } ?> </style> </div> </body>
[+]
..
[-] sib-api-manager.php
[edit]
[-] mailin.php
[edit]
[-] sib-sms-code.php
[edit]
[-] table-forms.php
[edit]
[+]
templates
[-] index.php
[edit]
[-] function.wp_mail.php
[edit]
[-] sendinblue.php
[edit]
[-] SendinblueApiClient.php
[edit]
[-] sib-form-preview.php
[edit]