fixed docstring

This commit is contained in:
Luana 2023-06-25 21:34:13 -03:00 committed by Shish
parent ca88b28b1e
commit 7ee31db5c6
1 changed files with 3 additions and 2 deletions

View File

@ -196,8 +196,9 @@ class BaseThemelet
* Generates a <select> HTML template and sets up the given options.
*
* @param string $name The name attribute of <select>.
* @param array $options A pair of parameters for <option> tags. First one is value, second one is text. Example: ('optionA', 'Choose Option A').
* @param string $attributes Flags for <select>. Example: 'multiple required' becomes <select multiple required>
* @param array $options An array of pairs of parameters for <option> tags. First one is value, second one is text. Example: ('optionA', 'Choose Option A').
* @param bool $required Wether the <select> element is required.
* @param bool $multiple Wether the <select> element is multiple-choice.
* @param bool $empty_option Whether the first option should be an empty one.
* @param array $selected_options The values of options that should be pre-selected.
*/