2021-10-25 16:20:36 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
echo $this->element('genericElements/IndexTable/index_table', [
|
|
|
|
'data' => [
|
|
|
|
'data' => $data,
|
|
|
|
'top_bar' => [
|
|
|
|
'children' => [
|
|
|
|
[
|
|
|
|
'type' => 'simple',
|
|
|
|
'children' => [
|
|
|
|
'data' => [
|
|
|
|
'type' => 'simple',
|
|
|
|
'text' => __('Add mailing list'),
|
|
|
|
'popover_url' => '/MailingLists/add'
|
|
|
|
]
|
|
|
|
]
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'search',
|
2021-11-10 15:31:09 +01:00
|
|
|
'button' => __('Search'),
|
2021-10-25 16:20:36 +02:00
|
|
|
'placeholder' => __('Enter value to search'),
|
|
|
|
'data' => '',
|
|
|
|
'searchKey' => 'value'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'type' => 'table_action',
|
|
|
|
'table_setting_id' => 'mailinglist_index',
|
|
|
|
]
|
|
|
|
]
|
|
|
|
],
|
|
|
|
'fields' => [
|
|
|
|
[
|
|
|
|
'name' => '#',
|
|
|
|
'sort' => 'id',
|
|
|
|
'class' => 'short',
|
|
|
|
'data_path' => 'id',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => __('Name'),
|
|
|
|
'sort' => 'name',
|
|
|
|
'data_path' => 'name',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => __('Owner'),
|
|
|
|
'data_path' => 'user_id',
|
|
|
|
'element' => 'user'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => __('UUID'),
|
|
|
|
'sort' => 'uuid',
|
|
|
|
'data_path' => 'uuid',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => __('Members'),
|
|
|
|
'data_path' => 'individuals',
|
|
|
|
'element' => 'count_summary',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => __('Intended recipients'),
|
|
|
|
'data_path' => 'recipients',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => __('Description'),
|
|
|
|
'data_path' => 'description',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => __('Active'),
|
|
|
|
'data_path' => 'active',
|
|
|
|
'sort' => 'active',
|
|
|
|
'element' => 'boolean',
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'name' => __('Deleted'),
|
|
|
|
'data_path' => 'deleted',
|
|
|
|
'sort' => 'deleted',
|
|
|
|
'element' => 'boolean',
|
|
|
|
],
|
|
|
|
],
|
|
|
|
'title' => __('Mailing Lists Index'),
|
|
|
|
'description' => __('Mailing list are email distribution lists containing individuals.'),
|
|
|
|
'actions' => [
|
|
|
|
[
|
|
|
|
'url' => '/mailingLists/view',
|
|
|
|
'url_params_data_paths' => ['id'],
|
|
|
|
'icon' => 'eye'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'open_modal' => '/mailingLists/edit/[onclick_params_data_path]',
|
|
|
|
'modal_params_data_path' => 'id',
|
|
|
|
'icon' => 'edit'
|
|
|
|
],
|
|
|
|
[
|
|
|
|
'open_modal' => '/mailingLists/delete/[onclick_params_data_path]',
|
|
|
|
'modal_params_data_path' => 'id',
|
|
|
|
'icon' => 'trash'
|
|
|
|
],
|
|
|
|
]
|
|
|
|
]
|
|
|
|
]);
|
|
|
|
?>
|