You are here

function _multiselect_html_for_unselected_box_start in Multiselect 6

Provides html to draw the "not selected" box

1 call to _multiselect_html_for_unselected_box_start()
multiselect_select_process in ./multiselect.module
Process an individual element.

File

./multiselect.module, line 283
Allows users to select multiple items in an easier way than the normal node-reference widget.

Code

function _multiselect_html_for_unselected_box_start($unselfield, $fieldname) {
  $boxhtml = '';
  $boxhtml .= "<select name=\"" . $unselfield . "\" multiple=\"multiple\" class=\"form-select " . $unselfield . " multiselect_unsel\" id=\"" . $fieldname . "\" size=\"10\">\n";
  return $boxhtml;
}