You are here

getid3.admin.inc in getID3() 7.2

Same filename and directory in other branches
  1. 6 getid3.admin.inc
  2. 7 getid3.admin.inc

Admin pages.

File

getid3.admin.inc
View source
<?php

/**
 * @file
 * Admin pages.
 */

/**
 * Administration settings for getID3().
 */
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);
}

Functions

Namesort descending Description
getid3_admin_settings_form Administration settings for getID3().