Files
FHC-Core/application/widgets/Sprache_widget.php
T
2024-10-17 15:34:00 +02:00

16 lines
385 B
PHP

<?php
class Sprache_widget extends DropdownWidget
{
public function display($widgetData)
{
$this->load->model('system/Sprache_model', 'SpracheModel');
$this->SpracheModel->addOrder('sprache');
$this->addSelectToModel($this->SpracheModel, 'sprache', 'sprache');
$this->setElementsArray($this->SpracheModel->load());
$this->loadDropDownView($widgetData);
}
}