$v) { $filterParamsString[] = sprintf( '%s: %s', h(ucfirst($k)), h(is_array($v) ? http_build_query($v) : h($v) ) ); } $columnsDescription = [ 'owner_org' => __('Owner org'), 'attribute_count' => __('Attribute count'), 'creator_user' => __('Creator user'), 'tags' => __('Tags'), 'clusters' => __('Clusters'), 'correlations' => __('Correlations'), 'sightings' => __('Sightings'), 'proposals' => __('Proposals'), 'discussion' => __('Posts'), 'report_count' => __('Report count'), 'timestamp' => __('Last change at'), 'publish_timestamp' => __('Published at') ]; $columnsMenu = []; foreach ($possibleColumns as $possibleColumn) { $html = in_array($possibleColumn, $columns, true) ? ' ' : ' '; $html .= $columnsDescription[$possibleColumn]; $columnsMenu[] = [ 'html' => $html, 'onClick' => 'eventIndexColumnsToggle', 'onClickParams' => [$possibleColumn], ]; } $filterParamsString = implode(' & ', $filterParamsString); $data = array( 'children' => array( array( 'children' => array( array( 'id' => 'create-button', 'title' => __('Modify filters'), 'fa-icon' => 'search', 'onClick' => 'getPopup', 'onClickParams' => array($urlparams, 'events', 'filterEventIndex') ) ) ), array( 'children' => array( array( 'id' => 'multi-delete-button', 'title' => __('Delete selected events'), 'fa-icon' => 'trash', 'class' => 'hidden mass-select', 'onClick' => 'multiSelectDeleteEvents' ), array( 'id' => 'multi-export-button', 'title' => __('Export selected events'), 'fa-icon' => 'file-export', 'class' => 'hidden mass-select', 'onClick' => 'multiSelectExportEvents' ) ) ), array( 'children' => array( array( 'requirement' => count($passedArgsArray) > 0, 'html' => sprintf( '%s: %s', __('Filters'), $filterParamsString ) ), array( 'requirement' => count($passedArgsArray) > 0, 'url' => $baseurl . '/events/index', 'title' => __('Remove filters'), 'fa-icon' => 'times' ) ) ), array( 'children' => array( array( 'title' => __('My events only'), 'text' => __('My Events'), 'data' => array( 'searchemail' => h($me['email']) ), 'class' => 'searchFilterButton', 'active' => isset($passedArgsArray['email']) && $passedArgsArray['email'] === $me['email'] ), array( 'title' => __('My organisation\'s events only'), 'text' => __('Org Events'), 'data' => array( 'searchorg' => h($me['org_id']) ), 'class' => 'searchFilterButton', 'active' => isset($passedArgsArray['org']) && $passedArgsArray['org'] === $me['org_id'] ) ) ), array( 'children' => array( array( 'id' => 'simple_filter', 'type' => 'group', 'class' => 'last', 'title' => __('Choose columns to show'), 'fa-icon' => 'columns', 'children' => $columnsMenu, ), ), ), array( 'type' => 'search', 'button' => __('Filter'), 'placeholder' => __('Enter value to search'), 'data' => '', 'searchKey' => 'searcheventinfo', ) ) ); if (!$ajax) { echo $this->element('/genericElements/ListTopBar/scaffold', array('data' => $data)); } echo $this->element('Events/eventIndexTable'); ?>

Paginator->counter(array( 'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}') )); ?>

Html->script('vis'); echo $this->Html->css('vis'); echo $this->Html->css('distribution-graph'); echo $this->Html->script('network-distribution-graph'); ?> element('/genericElements/SideMenu/side_menu', array('menuList' => 'event-collection', 'menuItem' => 'index'));