Class representing a checkbox element type.
Description
Source
File: src/db-objects/elements/element-types/base/checkbox.php
class Checkbox extends Element_Type { /** * Filters the array representation of a given element of this type. * * @since 1.0.0 * * @param array $data Element data to filter. * @param Element $element The element object to get the data for. * @param Submission|null $submission Optional. Submission to get the values from, if available. Default null. * @return array Array including all information for the element type. */ public function filter_json( $data, $element, $submission = null ) { $data = parent::filter_json( $data, $element, $submission ); $data['value'] = (bool) $data['value']; return $data; } /** * Formats values for an export. * * @since 1.0.0 * * @param array $values Associative array of `$field => $value` pairs, with the main element field having the key '_main'. * @param Element $element Element the values belong to. * @param string $export_format Export format identifier. May be 'xls', 'csv', 'json', 'xml' or 'html'. * @return array Associative array of `$column_slug => $column_value` pairs. The number of items and the column slugs * must match those returned from the get_export_columns() method. */ public function format_values_for_export( $values, $element, $export_format ) { $yes_no = $this->get_export_column_choices_yes_no( $element ); $value = isset( $values['_main'] ) && $values['_main'] ? $yes_no[0] : $yes_no[1]; return array( 'element_' . $element->id . '__main' => $this->escape_single_value_for_export( $value, $export_format ), ); } /** * Validates a field value for an element. * * @since 1.0.0 * * @param mixed $value The value to validate. It is already unslashed when it arrives here. * @param Element $element Element to validate the field value for. * @param Submission $submission Submission the value belongs to. * @return mixed|WP_Error Validated value, or error object on failure. */ public function validate_field( $value, $element, $submission ) { $settings = $this->get_settings( $element ); $value = (bool) $value; if ( ! empty( $settings['required'] ) && 'no' !== $settings['required'] && ! $value ) { return $this->create_error( 'value_required', __( 'You must check this box.', 'torro-forms' ), $value ); } return $value; } /** * Gets the fields arguments for an element of this type when editing submission values in the admin. * * @since 1.0.0 * * @param Element $element Element to get fields arguments for. * @return array An associative array of `$field_slug => $field_args` pairs. */ public function get_edit_submission_fields_args( $element ) { $fields = parent::get_edit_submission_fields_args( $element ); $slug = $this->get_edit_submission_field_slug( $element->id ); $fields[ $slug ]['type'] = 'checkbox'; return $fields; } /** * Bootstraps the element type by setting properties. * * @since 1.0.0 */ protected function bootstrap() { $this->slug = 'checkbox'; $this->title = __( 'Checkbox', 'torro-forms' ); $this->description = __( 'A single checkbox element to toggle a value.', 'torro-forms' ); $this->icon_svg_id = 'torro-icon-checkbox'; $this->add_description_settings_field(); $this->add_required_settings_field(); $this->add_css_classes_settings_field(); } }
Changelog
Version | Description |
---|---|
1.0.0 | Introduced. |
Methods
- __construct — Constructor.
- add_css_classes_settings_field — Adds a settings field for specifying additional CSS classes for the input.
- add_description_settings_field — Adds a settings field for specifying the element description.
- add_placeholder_settings_field — Adds a settings field for specifying the element placeholder.
- add_required_settings_field — Adds a settings field for specifying whether the element is required to be filled in.
- bootstrap — Bootstraps the element type by setting properties.
- create_error — Creates a new error object.
- escape_single_value_for_export — Escapes a single value for a specific export format.
- filter_json — Filters the array representation of a given element of this type.
- format_values_for_export — Formats values for an export.
- get_description — Returns the element type description.
- get_edit_submission_field_slug — Gets the slug for a submission value edit field.
- get_edit_submission_fields_args — Gets the fields arguments for an element of this type when editing submission values in the admin.
- get_export_column_choices_yes_no — Gets the two strings indicating 'Yes' and 'No' in an export column.
- get_export_columns — Gets the columns required for an export.
- get_icon_css_class — Returns the element type icon CSS class.
- get_icon_svg_id — Returns the element type icon SVG ID.
- get_icon_url — Returns the element type icon URL.
- get_settings — Returns the available settings.
- get_settings_fields — Returns the element type settings fields.
- get_settings_sections — Returns the element type settings sections.
- get_slug — Returns the element type slug.
- get_title — Returns the element type title.
- get_values — Returns the current values for the element fields, optionally for a specific submission.
- sanitize_settings_fields — Sanitizes the settings fields.
- sanitize_settings_sections — Sanitizes the settings sections.
- use_single_export_column_for_choices — Checks whether a single export column should be used for all choices.
- validate_field — Validates a field value for an element.