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/*
20 lines
322 B
PHP
20 lines
322 B
PHP
<?php
|
|
|
|
class Dropdown_widget extends DropdownWidget
|
|
{
|
|
public function display($widgetData)
|
|
{
|
|
$elements = $widgetData['elements'];
|
|
$emptyElement = $widgetData['emptyElement'];
|
|
|
|
$this->setElementsArray(
|
|
$elements,
|
|
true,
|
|
$emptyElement,
|
|
'No data present'
|
|
);
|
|
|
|
$this->loadDropDownView($widgetData);
|
|
}
|
|
}
|