function system_charts_get_page_info in Google Chart Tools: Image Charts 5
Same name and namespace in other branches
- 6 contrib/system_charts/system_charts.module \system_charts_get_page_info()
- 7 system_charts/system_charts.module \system_charts_get_page_info()
Get available report page information.
Return value
array report information.
1 call to system_charts_get_page_info()
- system_charts_menu in contrib/
system_charts/ system_charts.module - Implementation of hook_menu().
File
- contrib/
system_charts/ system_charts.module, line 307 - Core drupal system charting. Developed by Tj Holowaychuk
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.'),
),
);
}