LLMS_Form_Field::is_input_group()

Determines if the field is a group of checkboxes or radios.


Return Return

(bool)


Top ↑

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'] );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.