//00header
/**
 * $Horde: horde/config/prefs.php.dist,v 1.85.2.7 2006/06/22 18:47:55 chuck Exp $
 *
 * Preferences Information
 * =======================
 * Changes you make to the prefs.php file(s) will not be reflected until the
 * user logs out and logs in again.
 *
 * If you change these preferences in a production system, you will
 * need to delete any horde_prefs in your preferences database.
 *
 * prefGroups array
 * ----------------
 * $prefGroups are for display purposes when you press the options button.
 * The options choice will appear when you set your preferences driver
 * in the horde/config/conf.php file.
 *
 * $prefGroups array definition:
 *    column:  What column head this group will go under
 *     label:  Label for the group of settings
 *      desc:  Description that will show under label
 *   members:  List of preferences supported by this group
 *
 * _prefs array
 * ------------
 * The $_prefs array's are listed in the same order as listed in the
 * members element of $prefGroups.
 *
 *   value: This entry will either hold a number or a text value based on the
 *          preference type:
 *            implicit:  See Preference type
 *                text:  Text value
 *              number:  Number value
 *            checkbox:  Value should be 0 for unchecked, 1 for checked
 *              select:  Value associated with that selection list
 *
 *  locked: Allow preference to be changed from UI
 *             true:  Do not show this preference in the UI
 *            false:  Show this preference in the UI and allow changing
 *
 *  shared: Share with other horde apps
 *             true:  Share this pref with other Horde apps
 *            false:  Keep this pref local to the current app
 *
 *    type: Preference type
 *             special:  Provides a UI widget
 *              select:  Provides a selection list in the UI
 *            checkbox:  Provides a checkbox
 *            implicit:  Provides storage for 'special' types
 *            password:  Provides a textbox for password entry.
 *                enum:  Use static list of elements...similar to 'select'
 *
 *    enum: Static list of elements.
 *
 * escaped: For an enum or a select, are the keys and values already html-escaped?
 *          Defaults to false if not present.
 *
 *    hook: Call a hook function for the value of this preference
 *             true:  Will call the function _prefs_hook_<prefname>
 *                    to fill in the value of this preference.
 *                    See hooks.php for more details.
 *            false:  Normal behaviour - no hook is called.
 */

