mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
16 lines
385 B
PHP
Executable File
16 lines
385 B
PHP
Executable File
<?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);
|
|
}
|
|
} |