6.0.0-git
2024-03-19
Last Modified 2013-09-04 by Jan Schneider

Themes HowTo

This information is valid for Horde 4 only. See Doc/Dev/ThemesH3 for Horde 3 or Doc/Dev/Themes for Horde 5 and later.

Default Theme

Each application defines a default theme. This default theme is used as the base of all other themes. The default theme is not accessible to end users, and should not be altered when developing a new theme.

User Preference Theme

The default theme is then extended by the theme defined in the user's 'theme' preference entry.

Theme Inheritance

Theme elements are inherited in the following order:

  1. application/themes/theme/graphics
  2. horde/themes/theme/graphics
  3. application/themes/default/graphics
  4. horde/themes/default/graphics

(The application entries listed above will not be skipped if horde is the current application.)

For images & sounds, the first matching item is used working down the inheritance tree.

For CSS, the inheritance order determines the order the stylesheets are output. CSS files located at the top of the inheritance tree will be loaded LAST, horde default stylesheets will be loaded FIRST.

Theme Layout

Themes are located in the themes/[themename] directory.

Subdirectories

Applications that have multiple views can also store files in a subdirectory (e.g. imp stores dynamic view formatting in the dimp subdirectory and minimal view formatting in the mimp subdirectory.

The following subdirectories are reserved for special Horde use:

Directory Description
block CSS to use for an application's portal block (as of Horde 4.1)

CSS

CSS files should normally go into the base theme directory. There are several filenames that have special meaning in Horde:

Filename Description
screen.css The default CSS definition
rtl.css Styles to use if the current language is a Right-to-Left language
embed.css Used for embedded display

Additionally, the following CSS files will be automatically added based on the current browser:

Filename Browser
ie8.css Internet Explorer 8
ie7.css Internet Explorer 7
ie6_or_less.css Internet Explorer <= 6
opera.css Opera
mozilla.css Mozilla-based browser (i.e. Firefox)
webkit.css Webkit-based browser (i.e. Google Chrome, Safari)

URLs contained in CSS should be relative URLs.

Graphics

Graphics live in the graphics/ folder of your theme's base directory.

Sounds

Sounds live in the sounds/ folder of your theme's base directory.

Sounds must be in WAV format (with a .wav file suffix).

Information File

This file is only needed in the horde theme directory. It is not needed in an applications' theme directory

The info.php contains information regarding the theme. It must be a file that can be parsed by PHP. It should contain the following variables:

Variable Name Description
$theme_name This is the theme name as it will appear in the theme list in the users' display options.

An example for info.php:

<?php
/**
 * This is my personal theme.
 * It is based on the colors of my bike when I was five.
 *
 * @author John Doe <john@example.com>
 */
$theme_name = _("My Theme Name");