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
608 609 610 611 612 | 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. |