Created infocenter details page showing Person Stammdaten, Dokumente, Prestudent ZGVs, Logs and Notizen.

This commit is contained in:
alex
2017-12-18 14:01:42 +01:00
parent 024035e890
commit fa3daa7a57
10 changed files with 896 additions and 0 deletions
@@ -0,0 +1,22 @@
<?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);
}
}