mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
98918bc336
- Added new phrases where missing or hard coded - Fixed windowz new lines in /application/*
21 lines
298 B
PHP
21 lines
298 B
PHP
<?php
|
|
|
|
class MultipleDropdown_widget extends DropdownWidget
|
|
{
|
|
public function display($widgetData)
|
|
{
|
|
$elements = $widgetData['elements'];
|
|
|
|
$this->setElementsArray(
|
|
$elements,
|
|
false,
|
|
'',
|
|
'No data present'
|
|
);
|
|
|
|
$this->setMultiple();
|
|
|
|
$this->loadDropDownView($widgetData);
|
|
}
|
|
}
|