mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
22 lines
510 B
PHP
Executable File
22 lines
510 B
PHP
Executable File
<?php
|
|
|
|
class Statusgrund_widget extends DropdownWidget
|
|
{
|
|
public function display($widgetData)
|
|
{
|
|
// Zgv
|
|
$this->load->model('crm/statusgrund_model', 'StatusgrundModel');
|
|
$this->StatusgrundModel->addOrder('statusgrund_id');
|
|
|
|
$this->addSelectToModel($this->StatusgrundModel, 'statusgrund_id', 'bezeichnung_mehrsprachig[1]');
|
|
|
|
$this->setElementsArray(
|
|
$this->StatusgrundModel->load(),
|
|
true,
|
|
'Select a Statusgrund...',
|
|
'No Statusgrund found'
|
|
);
|
|
|
|
$this->loadDropDownView($widgetData);
|
|
}
|
|
} |