| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?php if ( ! defined( 'ABSPATH' ) ) exit;
- /**
- * Register our step processing admin page.
- *
- * @since 2.7.6
- * @return void
- */
- function nf_register_step_processing_page() {
- // Register our admin page
- $admin_page = add_submenu_page( NULL, __( 'Ninja Forms Processing', 'ninja-forms' ), __( 'Processing', 'ninja-forms' ), apply_filters( 'ninja_forms_admin_menu_capabilities', 'manage_options' ), 'nf-processing', 'nf_output_step_processing_page' );
- add_action( 'admin_print_styles-' . $admin_page, 'nf_step_processing_css' );
- add_action( 'admin_print_styles-' . $admin_page, 'nf_step_processing_js' );
- }
- add_action( 'admin_menu', 'nf_register_step_processing_page' );
- /**
- * Enqueue our step processing CSS.
- *
- * @since 2.7.6
- * @return void
- */
- function nf_step_processing_css() {
- wp_enqueue_style( 'jquery-smoothness', Ninja_Forms::$url .'deprecated/css/smoothness/jquery-smoothness.css');
- }
- /**
- * Enqueue our step processing JS.
- *
- * @since 2.7.6
- * @return void
- */
- function nf_step_processing_js() {
- wp_enqueue_script( 'nf-processing',
- Ninja_Forms::$url . 'deprecated/assets/js/dev/step-processing.js',
- array( 'jquery', 'jquery-ui-core', 'jquery-ui-sortable', 'jquery-ui-datepicker', 'jquery-ui-draggable', 'jquery-ui-droppable', 'jquery-ui-progressbar' ) );
- $step_labels = apply_filters( 'nf_step_processing_labels', array(
- 'Lacing Our Tabis',
- 'Cleaning The Dojo',
- 'Doing Splits',
- 'Buffing Bo Staff',
- 'Intimidating Gaze',
- 'Sparring',
- 'Packing Smoke Bombs',
- 'Polishing Shuriken',
- 'Throwing Sais',
- 'Calling Our Mom',
- 'Practicing Katas',
- 'Swinging Nunchucks',
- 'Sharpening Swords',
- 'Ironing Ninja Gi',
- 'Eating Breakfast',
- 'Cutting Stuff',
- 'Doing Dishes',
- 'Climbing Walls'
- ) );
- wp_localize_script( 'nf-processing', 'nf_processing', array( 'step_labels' => $step_labels ) );
- }
- /**
- * Output our step processing admin page.
- *
- * @since 2.7.6
- * @return void
- */
- function nf_output_step_processing_page() {
- $page_title = isset ( $_REQUEST['title'] ) ? urldecode( esc_html ( $_REQUEST['title'] ) ) : __( 'Ninja Forms - Processing', 'ninja-forms' );
- ?>
- <style>
- .ui-progressbar {
- position: relative;
- width: 800px;
- max-width: 100%;
- height: 20px;
- }
- .progress-label {
- line-height: 12px;
- position: absolute;
- left: 40%;
- top: 4px;
- font-weight: bold;
- text-shadow: 1px 1px 0 #fff;
- }
- .ui-progressbar-value {
- /*background-size: 100% auto;*/
- background-color: #FFF;
- background-repeat: repeat;
- background-image: url(<?php echo NF_PLUGIN_URL . 'assets/img/pbar-ani.gif'; ?>);
- }
- </style>
- <script type="text/javascript">
- <?php
- if ( isset ( $_REQUEST['action'] ) && ! empty ( $_REQUEST['action'] ) ) {
- $action = __( 'Loading...', 'ninja-forms' );
- ?>
- var nfProcessingAction = 'nf_<?php echo esc_html( $_REQUEST['action'] ); ?>';
- <?php
- } else {
- $action = __( 'No Action Specified...', 'ninja-forms' );
- ?>
- var nfProcessingAction = 'none';
- <?php
- }
- $tmp_array = array();
- $url_params = parse_url( esc_url_raw( add_query_arg( array() ) ) );
- $query = $url_params['query'];
- $query = parse_str( $query, $tmp_array );
- unset ( $tmp_array['action'] );
- unset ( $tmp_array['page'] );
- ?>
- var nfProcessingArgs = <?php echo json_encode( $tmp_array ); ?>
- </script>
- <?php
- ?>
- <div class="wrap">
- <h2><?php echo $page_title ?></h2>
- <div id="nf-upgrade-status">
- <p><?php _e( 'The process has started, please be patient. This could take several minutes. You will be automatically redirected when the process is finished.', 'ninja-forms' ); ?></p>
- <div id="progressbar">
- <div class="progress-label">
- <?php echo $action; ?>
- </div>
- </div>
- </div>
- </div>
- <!-- DISPLAY ERRORS -->
- <div id="nf-upgrade-errors" class="hidden nf-upgrade-errors">
- <h3 class="nf-upgrade-errors-header">Error Log</h3>
- <ul class="nf-upgrade-errors-list"></ul>
- </div>
- <?php
- }
|