You are here

function system_charts_get_page_info in Google Chart Tools: Image Charts 6

Same name and namespace in other branches
  1. 5 contrib/system_charts/system_charts.module \system_charts_get_page_info()
  2. 7 system_charts/system_charts.module \system_charts_get_page_info()

Get available report page information.

Return value

array report information.

File

contrib/system_charts/system_charts.module, line 314
Provides core Drupal chart implementations.

Code

function system_charts_get_page_info() {
  return array(
    'nodes' => array(
      '#title' => t('Nodes'),
      '#type' => 'nodes',
      '#description' => t('Various node data reports.'),
    ),
    'users' => array(
      '#title' => t('Users'),
      '#type' => 'users',
      '#description' => t('User access and information reporting.'),
    ),
    'watchdog' => array(
      '#title' => t('Watchdog'),
      '#type' => 'watchdog',
      '#description' => t('Log charts.'),
    ),
  );
}