2020-06-25 01:44:26 +02:00
|
|
|
<?php
|
|
|
|
echo $this->element('genericElements/Form/genericForm', [
|
|
|
|
'data' => [
|
|
|
|
'model' => 'SharingGroups',
|
|
|
|
'fields' => [
|
|
|
|
[
|
|
|
|
'field' => 'organisation_id',
|
|
|
|
'type' => 'dropdown',
|
|
|
|
'label' => __('Owner organisation'),
|
|
|
|
'options' => $dropdownData['organisation']
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'submit' => [
|
|
|
|
'action' => $this->request->getParam('action')
|
2020-11-25 16:06:31 +01:00
|
|
|
],
|
2020-11-25 16:45:55 +01:00
|
|
|
]
|
2020-06-25 01:44:26 +02:00
|
|
|
]);
|
|
|
|
?>
|
|
|
|
</div>
|