input(array( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 'type' => 'hidden', 'id' => esc_html( $type.'-x' ), 'name' => 'uwpx', 'value' => '', 'no_wrap' => true, )); echo aui()->input(array( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 'type' => 'hidden', 'id' => esc_html( $type.'-y' ), 'name' => 'uwpy', 'value' => '', 'no_wrap' => true, )); echo aui()->input(array( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 'type' => 'hidden', 'id' => esc_html( $type.'-w' ), 'name' => 'uwpw', 'value' => '', 'no_wrap' => true, )); echo aui()->input(array( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 'type' => 'hidden', 'id' => esc_html( $type.'-h' ), 'name' => 'uwph', 'value' => '', 'no_wrap' => true, )); echo aui()->input(array( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 'type' => 'hidden', 'id' => esc_html( 'uwp-'.$type.'-crop-image' ), 'name' => 'uwp_crop', 'value' => esc_attr( $image_url ), 'no_wrap' => true, )); echo aui()->input(array( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 'type' => 'hidden', 'name' => 'uwp_crop_nonce', 'value' => esc_html( wp_create_nonce( 'uwp_crop_nonce_'.$type ) ), 'no_wrap' => true, )); echo aui()->button(array( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped 'type' => 'submit', 'id' => esc_html( 'save_uwp_'.$type ), 'content' => esc_html__( 'Apply', 'userswp' ), 'name' => esc_html( 'uwp_'.$type.'_crop' ), )); ?>