mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
22 lines
446 B
PHP
Executable File
22 lines
446 B
PHP
Executable File
<?php
|
|
|
|
class Nation_widget extends DropdownWidget
|
|
{
|
|
public function display($widgetData)
|
|
{
|
|
// Nation
|
|
$this->load->model('codex/Nation_model', 'NationModel');
|
|
$this->NationModel->addOrder('kurztext');
|
|
|
|
$this->addSelectToModel($this->NationModel, 'nation_code', 'kurztext');
|
|
|
|
$this->setElementsArray(
|
|
$this->NationModel->load(),
|
|
true,
|
|
$this->p->t('ui', 'bitteEintragWaehlen')
|
|
);
|
|
|
|
$this->loadDropDownView($widgetData);
|
|
}
|
|
}
|