PATH:
home
/
lab2454c
/
caimegroup.com
/
wp-content
/
plugins
/
user-registration
/
includes
/
admin
/
views
<?php /** * Admin View: Notice - Promotional * * @package UserRegistration/Admin * @since 2.3.2 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } ?> <div id="user-registration-<?php echo esc_attr( $notice_type ); ?>-notice" class="notice notice-info user-registration-notice" data-purpose="<?php echo esc_attr( $notice_type ); ?>"> <div class="user-registration-notice-thumbnail"> <img src="<?php echo esc_url( UR()->plugin_url() . '/assets/images/UR-Logo.gif' ); ?>" alt=""> </div> <div class="user-registration-notice-text"> <div class="user-registration-notice-header"> <h3><?php echo wp_kses_post( $notice_header ); ?></h3> <?php if ( 'allow_usage' !== $notice_type ) { ?> <a href="#" class="close-btn notice-dismiss notice-dismiss-temporarily">×</a> <?php } ?> </div> <?php promotional_notice_content( $notice_type ); ?> <div class="user-registration-notice-links"> <?php promotional_notice_links( $notice_type, $notice_target_link ); ?> </div> </div> </div> <script type="text/javascript"> jQuery( document ).ready( function ( $ ) { $( document ).on( 'click', '.ur-allow-usage', function ( event ) { event.preventDefault(); var allow_usage_tracking = true; ajaxCall( allow_usage_tracking ); } ); $( document ).on( 'click', '.ur-deny-usage', function ( event ) { event.preventDefault(); var allow_usage_tracking = false; ajaxCall( allow_usage_tracking ); } ); function ajaxCall( allow_usage_tracking ) { $.post( ajaxurl, { action: 'user_registration_allow_usage_dismiss', allow_usage_tracking: allow_usage_tracking, _wpnonce: '<?php echo esc_js( wp_create_nonce( 'allow_usage_nonce' ) ); ?>' } ); $( '#user-registration-allow_usage-notice' ).remove(); } } ); </script>
[-] html-notice-registration.php
[edit]
[-] html-notice-custom.php
[edit]
[-] html-notice-updated.php
[edit]
[-] html-admin-settings.php
[edit]
[-] html-notice-updating.php
[edit]
[+]
..
[-] html-admin-page-form-templates.php
[edit]
[-] html-notice-promotional.php
[edit]
[-] html-notice-php-deprecation.php
[edit]
[-] html-notice-key-deactivated.php
[edit]
[-] html-license-form.php
[edit]
[-] html-admin-page-export-users.php
[edit]
[-] html-admin-page-import-export-forms.php
[edit]
[-] html-notice-key-activated.php
[edit]
[-] html-admin-page-builder-setup.php
[edit]
[-] html-notice-error.php
[edit]
[-] html-admin-page-status.php
[edit]
[-] html-admin-page-status-logs.php
[edit]
[-] html-admin-page-forms.php
[edit]
[-] html-notice-install.php
[edit]
[-] html-notice-key-unvalidated.php
[edit]
[-] html-login-page-forms.php
[edit]
[-] html-notice-update.php
[edit]
[-] html-deactivation-popup.php
[edit]