You are here

function getid3_admin_settings_form in getID3() 7.2

Same name and namespace in other branches
  1. 6 getid3.admin.inc \getid3_admin_settings_form()
  2. 7 getid3.admin.inc \getid3_admin_settings_form()

Administration settings for getID3().

1 string reference to 'getid3_admin_settings_form'
getid3_menu in ./getid3.module
Implements hook_menu().

File

./getid3.admin.inc, line 10
Admin pages.

Code

function getid3_admin_settings_form() {
  $form['getid3_show_warnings'] = array(
    '#type' => 'checkbox',
    '#title' => t("Display Warnings"),
    '#default_value' => variable_get('getid3_show_warnings', FALSE),
    '#description' => t("Check this to display the warning messages from the getID3 library when reading and writing ID3 tags. Generally it's a good idea to leave this unchecked, getID3 reports warnings for several trivial problems and the warnings can be confusing to users. This setting can be useful when debugging problems with the ID3 tags."),
  );
  return system_settings_form($form);
}