false, 'back_button_label' => __('← Go Back', 'wp-multisite-waas'), ]; } /** * List of keys of the default fields we want to display on the builder. * * @since 2.0.0 * @return array */ public function default_fields() { return [ 'id', 'name', ]; } /** * If you want to force a particular attribute to a value, declare it here. * * @since 2.0.0 * @return array */ public function force_attributes() { return []; } /** * Returns the list of additional fields specific to this type. * * @since 2.0.0 * @return array */ public function get_fields() { return [ 'enable_go_back_button' => [ 'type' => 'toggle', 'title' => __('Add "Go Back" button', 'wp-multisite-waas'), 'desc' => __('Enable this option to add a "Go Back" button. Useful for multi-step checkout forms.', 'wp-multisite-waas'), 'tooltip' => '', 'value' => 0, 'html_attr' => [ 'v-model' => 'enable_go_back_button', ], ], 'back_button_label' => [ 'type' => 'text', 'title' => __('"Go Back" Button Label', 'wp-multisite-waas'), 'desc' => __('Value to be used as the "Go Back" label.', 'wp-multisite-waas'), 'placeholder' => __('e.g. ← Go Back', 'wp-multisite-waas'), 'value' => __('← Go Back', 'wp-multisite-waas'), 'wrapper_html_attr' => [ 'v-cloak' => '1', 'v-show' => 'enable_go_back_button', ], ], ]; } /** * Returns the field/element actual field array to be used on the checkout form. * * @since 2.0.0 * * @param array $attributes Attributes saved on the editor form. * @return array An array of fields, not the field itself. */ public function to_fields_array($attributes) { $uniqid = uniqid(); $fields = []; $fields[ $attributes['id'] . '_errors' ] = [ 'type' => 'html', 'wrapper_classes' => 'wu_submit_button_errors wu-clear-both', 'content' => '', 'wrapper_html_attr' => [ 'v-if' => 'get_errors()', ], ]; $fields[ $attributes['id'] . '_group' ] = [ 'type' => 'group', 'raw' => true, 'default' => [], 'wrapper_classes' => '', 'fields' => [], ]; $button_wrapper_classes = 'wu_submit_button'; if ($attributes['enable_go_back_button']) { $steps = \WP_Ultimo\Checkout\Checkout::get_instance()->steps; $is_first_step = isset($steps[0]) && $steps[0]['id'] === $attributes['step']; if ( ! $is_first_step) { $fields[ $attributes['id'] . '_group' ]['fields'][ $attributes['id'] . '_go_back' ] = [ 'type' => 'html', 'wrapper_classes' => 'md:wu-w-1/2 wu-box-border wu-float-left wu--mt-4', 'id' => $attributes['id'] . '_go_back', 'content' => sprintf('%s', $attributes['back_button_label']), ]; $button_wrapper_classes .= ' md:wu-w-1/2 wu-box-border wu-float-left wu-text-right'; } } $fields[ $attributes['id'] . '_group' ]['fields'][ $attributes['id'] ] = [ 'type' => 'submit', 'wrapper_classes' => trim($button_wrapper_classes . ' ' . wu_get_isset($attributes, 'wrapper_element_classes', '')), 'classes' => trim('button button-primary btn-primary' . ' ' . wu_get_isset($attributes, 'element_classes', '')), 'id' => $attributes['id'], 'name' => $attributes['name'], ]; if ($attributes['enable_go_back_button']) { $fields[ $attributes['id'] . '_clear' ] = [ 'type' => 'clear', ]; } return $fields; } }