protected function DaysOfWeek::_getHeader in Visitors 8.2
Returns a table header configuration.
Return value
array A render array representing the table header info.
1 call to DaysOfWeek::_getHeader()
- DaysOfWeek::display in src/
Controller/ Report/ DaysOfWeek.php - Returns a days of week page page.
File
- src/
Controller/ Report/ DaysOfWeek.php, line 106 - Contains Drupal\visitors\Controller\Report\DaysOfWeek.
Class
Namespace
Drupal\visitors\Controller\ReportCode
protected function _getHeader() {
return array(
'#' => array(
'data' => t('#'),
),
'day' => array(
'data' => t('Day'),
),
'count' => array(
'data' => t('Pages'),
),
);
}