Summary: Creating dropdown menus, including specialized Time and Country selectors.
To create a standard select list, options must be added prior to creating the select element:
Add Option: $form->addOption($selectName, $value, $txt, $groupName, $attr);
Create Select: $form->addSelect($selectName, $label, $attr, $displayGroupLabels);
Specialized Selectors:
Country Select: Generates a full country list with flags using $form->addCountrySelect(). Supported plugins include Slimselect, Bootstrap-select, and Select2.
Time Select: Generates an hours:minutes dropdown using $form->addTimeSelect(). Configuration options include min/max time, step intervals, and 12h/24h format.