- Moved file to manage vorlage into subdir vorlage

- Updated sprache, orgform, organisationseinheit and vorlage to the new
widget
- Changed method getRecursiveList of model Organisationseinheit_model
- Updated vilesci_menu_main.inc.php
- Changed method loadDropDownView of WidgetLib: if a selected value is
not given, by default it is set as HTML_DEFAULT_VALUE
- Updated all the affectd files
This commit is contained in:
Paolo
2017-03-29 16:57:29 +02:00
parent 58734e9248
commit 9dc9a712c4
25 changed files with 358 additions and 343 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
class Orgform_widget extends DropdownWidget
{
public function display($widgetData)
{
$this->load->model('codex/Orgform_model', 'OrgFormModel');
$this->OrgFormModel->addOrder('bezeichnung');
$this->addSelectToModel($this->OrgFormModel, 'orgform_kurzbz', 'bezeichnung');
$this->setElementsArray($this->OrgFormModel->load());
$this->loadDropDownView($widgetData);
}
}