public function Hosts::display in Visitors 8.2
Returns a hosts page.
Return value
array A render array representing the hosts page content.
1 string reference to 'Hosts::display'
File
- src/
Controller/ Report/ Hosts.php, line 64  - Contains Drupal\visitors\Controller\Report\Hosts.
 
Class
Namespace
Drupal\visitors\Controller\ReportCode
public function display() {
  $form = $this->formBuilder
    ->getForm('Drupal\\visitors\\Form\\DateFilter');
  $header = $this
    ->_getHeader();
  return array(
    'visitors_date_filter_form' => $form,
    'visitors_table' => array(
      '#type' => 'table',
      '#header' => $header,
      '#rows' => $this
        ->_getData($header),
    ),
    'visitors_pager' => array(
      '#type' => 'pager',
    ),
  );
}