/home/vianto5/cititower.mx/wp-content/plugins/wpforms/src/Pro/Forms/Fields/Pagebreak
NameSizeModeActions
Field.php149090644editdlrm
Frontend.php49890644editdlrm
Edit: /home/vianto5/cititower.mx/wp-content/plugins/wpforms/src/Pro/Forms/Fields/Pagebreak/Field.php (14909B)
type}", '__return_false' ); // Admin form builder enqueues. add_action( 'wpforms_builder_enqueues', [ $this, 'admin_builder_enqueues' ] ); } /** * Enqueue script for the admin form builder. * * @since 1.9.7 */ public function admin_builder_enqueues(): void { $min = wpforms_get_min_suffix(); // JavaScript. wp_enqueue_script( 'wpforms-builder-page-break-field', WPFORMS_PLUGIN_URL . "assets/pro/js/admin/builder/fields/page-break{$min}.js", [ 'jquery', 'wpforms-builder' ], WPFORMS_VERSION, false ); } /** * Sort fields to make sure that bottom page break elements are in their place. * Need to correctly display existing forms with wrong page-break bottom element positioning. * * @since 1.9.4 * * @param array|mixed $form_data Form data. * * @return array Form data. */ public function maybe_sort_fields( $form_data ): array { $form_data = (array) $form_data; if ( empty( $form_data['fields'] ) ) { return $form_data; } $bottom = []; $fields = $form_data['fields']; foreach ( $fields as $id => $field ) { // Process only pagebreak fields. if ( $field['type'] !== 'pagebreak' ) { continue; } if ( empty( $field['position'] ) ) { continue; } if ( $field['position'] === 'bottom' ) { $bottom = $field; unset( $fields[ $id ] ); } } if ( ! empty( $bottom ) ) { $form_data['fields'] = $fields + [ $bottom['id'] => $bottom ]; } return $form_data; } /** * This displays if the form contains pagebreaks and is configured to show * a page indicator in the top pagebreak settings. * * This function was moved from class-frontend.php in v1.3.7. * * @since 1.9.4 * * @param array $form_data Form data and settings. * * @noinspection HtmlUnknownAttribute */ public function display_page_indicator( $form_data ): void { // phpcs:ignore Generic.Metrics.CyclomaticComplexity.MaxExceeded $top = ! empty( wpforms()->obj( 'frontend' )->pages['top'] ) ? wpforms()->obj( 'frontend' )->pages['top'] : false; if ( empty( $top['indicator'] ) || $top['indicator'] === 'none' ) { return; } $pagebreak = [ 'indicator' => sanitize_html_class( $top['indicator'] ), 'color' => wpforms_sanitize_hex_color( $top['indicator_color'] ?? self::get_default_indicator_color() ), 'pages' => array_merge( [ wpforms()->obj( 'frontend' )->pages['top'] ], wpforms()->obj( 'frontend' )->pages['pages'] ), 'scroll' => empty( $top['scroll_disabled'] ), ]; $p = 1; $this->frontend_obj->open_page_indicator_container( $pagebreak ); if ( $pagebreak['indicator'] === 'circles' ) { // Circles theme. foreach ( $pagebreak['pages'] as $page ) { $is_first = $p === 1; $class = $is_first ? 'active' : ''; $background_color = ! empty( $pagebreak['color'] ) ? $pagebreak['color'] : ''; printf( '
', sanitize_html_class( $class ), absint( $p ) ); printf( '%d', $is_first && ! empty( $background_color ) ? ' style="background-color:' . sanitize_hex_color( $background_color ) . '"' : '', absint( $p ) ); if ( ! empty( $page['title'] ) ) { printf( '%s', esc_html( $page['title'] ) ); } echo '
'; ++$p; } } elseif ( $pagebreak['indicator'] === 'connector' ) { // Connector theme. foreach ( $pagebreak['pages'] as $page ) { $is_first = $p === 1; $class = $is_first ? 'active ' : ''; $color = ! empty( $pagebreak['color'] ) ? $pagebreak['color'] : ''; $width = 100 / ( count( $pagebreak['pages'] ) ) . '%'; printf( '
', sanitize_html_class( $class ), absint( $p ), esc_attr( $width ) ); printf( '%d', $is_first && ! empty( $color ) ? ' style="background-color:' . sanitize_hex_color( $color ) . '"' : '', absint( $p ) ); printf( '', $is_first && ! empty( $color ) ? ' style="border-top-color:' . sanitize_hex_color( $color ) . '"' : '' ); if ( ! empty( $page['title'] ) ) { printf( '%s', esc_html( $page['title'] ) ); } echo '
'; ++$p; } } elseif ( $pagebreak['indicator'] === 'progress' ) { // Progress theme. $p1 = ! empty( $pagebreak['pages'][0]['title'] ) ? $pagebreak['pages'][0]['title'] : ''; $width = 100 / count( $pagebreak['pages'] ) . '%'; $names = []; $background_color = ! empty( $pagebreak['color'] ) ? $pagebreak['color'] : ''; foreach ( $pagebreak['pages'] as $page ) { if ( ! empty( $page['title'] ) ) { $names[ sprintf( 'page-%d-title', $p ) ] = $page['title']; } ++$p; } printf( '%s', wpforms_html_attributes( '', [], $names ), // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped esc_html( $p1 ) ); printf( ' - ', empty( $p1 ) ? 'style="display:none;"' : '' ); $progress_text = ! empty( $top['progress_text'] ) ? str_replace( [ '{current_page}', '{last_page}' ], [ '%1$s', '%2$s' ], str_replace( '%', '%%', $top['progress_text'] ) ) : /* translators: %1$s - current step in multipage form, %2$d - total number of pages. */ esc_html__( 'Step %1$s of %2$d', 'wpforms' ); printf( '' . esc_html( $progress_text ) . '', '1', count( $pagebreak['pages'] ) ); printf( '
', esc_attr( $width ), ! empty( $background_color ) ? 'background-color:' . sanitize_hex_color( $background_color ) : '' ); } /** * Fires after the page indicator is displayed. * * @since 1.3.7 * * @param array $pagebreak Pagebreak settings. * @param array $form_data Form data and settings. */ do_action( 'wpforms_pagebreak_indicator', $pagebreak, $form_data ); // phpcs:ignore WPForms.PHP.ValidateHooks.InvalidHookName echo '
'; } /** * Display frontend markup for the beginning of the first pagebreak. * * @since 1.9.4 * * @param array $form_data Form data and settings. */ public function display_fields_before( $form_data ): void { // Check if we have an opening pagebreak, if not then bail. $field = ! empty( wpforms()->obj( 'frontend' )->pages['top'] ) ? wpforms()->obj( 'frontend' )->pages['top'] : false; if ( ! $field ) { return; } $css = ! empty( $field['css'] ) ? $field['css'] : ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo '
'; /** * Fires before all fields on the page. * * @since 1.7.8 * * @param array $field Field data and settings. * @param array $form_data Form data and settings. */ do_action( 'wpforms_field_page_break_page_fields_before', $field, $form_data ); // phpcs:ignore WPForms.PHP.ValidateHooks.InvalidHookName } /** * Display frontend markup for the end of the last pagebreak. * * @since 1.9.4 * * @param array $form_data Form data and settings. */ public function display_fields_after( $form_data ): void { if ( empty( wpforms()->obj( 'frontend' )->pages ) ) { return; } // If we don't have a bottom pagebreak, the form is pre-v1.2.1, and this is for backwards compatibility. $bottom = ! empty( wpforms()->obj( 'frontend' )->pages['bottom'] ) ? wpforms()->obj( 'frontend' )->pages['top'] : false; if ( ! $bottom ) { $prev = ! empty( $form_data['settings']['pagebreak_prev'] ) ? $form_data['settings']['pagebreak_prev'] : esc_html__( 'Previous', 'wpforms' ); echo '
'; printf( '', absint( wpforms()->obj( 'frontend' )->pages['current'] + 1 ), absint( $form_data['id'] ), esc_html( $prev ) ); echo '
'; } $field = ! empty( wpforms()->obj( 'frontend' )->pages['bottom'] ) ? wpforms()->obj( 'frontend' )->pages['bottom'] : $bottom; /** * Fires after all fields on the page. * * @since 1.7.8 * * @param array $field Field data and settings. * @param array $form_data Form data and settings. */ do_action( 'wpforms_field_page_break_page_fields_after', $field, $form_data ); // phpcs:ignore WPForms.PHP.ValidateHooks.InvalidHookName echo '
'; } /** * Display frontend markup to end the current page and begin the next. * * @since 1.9.4 * * @param array $field Field data and settings. * @param array $form_data Form data and settings. */ public function display_field_after( $field, $form_data ): void { if ( $field['type'] !== 'pagebreak' ) { return; } $total = wpforms()->obj( 'frontend' )->pages['total']; $current = wpforms()->obj( 'frontend' )->pages['current']; if ( ( empty( $field['position'] ) || $field['position'] !== 'top' ) && $current !== $total ) { $next = $current + 1; $last = $next === $total ? 'last' : ''; $css = ! empty( $field['css'] ) ? $field['css'] : ''; /** * Fires after all fields on the page. * * @since 1.7.8 * * @param array $field Field data and settings. * @param array $form_data Form data and settings. */ do_action( 'wpforms_field_page_break_page_fields_after', $field, $form_data ); // phpcs:ignore WPForms.PHP.ValidateHooks.InvalidHookName printf( '