51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
echo $this->element(
|
|
'/genericElements/SingleViews/single_view',
|
|
[
|
|
'title' => __('Organisation View'),
|
|
'data' => $entity,
|
|
'fields' => [
|
|
[
|
|
'key' => __('ID'),
|
|
'path' => 'id'
|
|
],
|
|
[
|
|
'key' => __('Name'),
|
|
'path' => 'name'
|
|
],
|
|
[
|
|
'key' => __('UUID'),
|
|
'path' => 'uuid'
|
|
],
|
|
[
|
|
'key' => __('URL'),
|
|
'path' => 'url'
|
|
],
|
|
[
|
|
'key' => __('Nationality'),
|
|
'path' => 'nationality'
|
|
],
|
|
[
|
|
'key' => __('Sector'),
|
|
'path' => 'sector'
|
|
],
|
|
[
|
|
'key' => __('Type'),
|
|
'path' => 'type'
|
|
],
|
|
[
|
|
'key' => __('Contacts'),
|
|
'path' => 'contacts'
|
|
],
|
|
[
|
|
'key' => __('Alignments'),
|
|
'type' => 'alignment',
|
|
'path' => '',
|
|
'scope' => 'organisations'
|
|
]
|
|
],
|
|
'metaTemplates' => empty($metaFields) ? [] : $metaFields,
|
|
'children' => []
|
|
]
|
|
);
|