function _charts_settings_page in Charts 7
Same name and namespace in other branches
- 6 charts.admin.inc \_charts_settings_page()
Module settings page. Users can set the default layout of their charts.
1 string reference to '_charts_settings_page'
- charts_menu in ./
charts.hooks.inc - Implementation of hook_menu().
File
- ./
charts.admin.inc, line 194 - @author Bruno Massa http://drupal.org/user/67164
Code
function _charts_settings_page() {
$form = array();
_charts_settings_form($form, array(), array(
'example',
'color_complete',
));
$form['submit'] = array(
'#type' => 'submit',
'#value' => t('Save settings'),
);
return $form;
}