function system_charts_get_page_info in Google Chart Tools: Image Charts 7
Same name and namespace in other branches
- 5 contrib/system_charts/system_charts.module \system_charts_get_page_info()
- 6 contrib/system_charts/system_charts.module \system_charts_get_page_info()
Get available report page information.
Return value
array report information.
File
- system_charts/
system_charts.module, line 319 - Provides primary Drupal hook 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.'),
),
);
}