LLMS_Form_Field::is_input_group()
Determines if the field is a group of checkboxes or radios.
Return Return
(bool)
Source Source
File: includes/forms/class-llms-form-field.php
protected function is_input_group() {
return in_array( $this->settings['type'], array( 'checkbox', 'radio' ), true ) && ! empty( $this->settings['options'] );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 5.0.0 | Introduced. |