function _system_charts_user_status_label in Google Chart Tools: Image Charts 7
Same name and namespace in other branches
- 5 contrib/system_charts/system_charts.module \_system_charts_user_status_label()
- 6 contrib/system_charts/system_charts.module \_system_charts_user_status_label()
Return user status label
1 call to _system_charts_user_status_label()
- system_charts_build in system_charts/
system_charts.module - Gather data and build a chart API structure.
File
- system_charts/
system_charts.module, line 365 - Provides primary Drupal hook implementations.
Code
function _system_charts_user_status_label($status) {
return $status ? t('Active') : t('Blocked');
}