home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / tsw / TSW_3.4.0.exe / Apache2 / admin / info.inc < prev    next >
Encoding:
Text File  |  2003-03-16  |  1002 b   |  37 lines

  1. <?php
  2. /*
  3. FILE: themes/theme_name/info.inc
  4. PURPOSE:
  5.     Various information related to theme
  6. */
  7.  
  8. /**
  9.     $THEME_OVERRIDES
  10.         The array contains elements with the
  11.         same keys as $my_colors.  Fields that
  12.         are overrided by the theme (in override.inc)
  13.         should have a value of '1', while 
  14.         settings that aren't overrided should
  15.         have a value of '0'.
  16. **/
  17.  
  18. $THEME_OVERRIDES["tool_bg"] = 1;
  19. $THEME_OVERRIDES["tool_link"] = 1;
  20. $THEME_OVERRIDES["folder_bg"] = 1;
  21. $THEME_OVERRIDES["folder_link"] = 1;
  22. $THEME_OVERRIDES["main_bg"] = 1;
  23. $THEME_OVERRIDES["main_hilite"] = 1;
  24. $THEME_OVERRIDES["main_text"] = 1;
  25. $THEME_OVERRIDES["main_link"] = 1;
  26. $THEME_OVERRIDES["main_head_bg"] = 1;
  27. $THEME_OVERRIDES["main_head_txt"] = 1;
  28. $THEME_OVERRIDES["main_darkbg"] = 1;
  29. $THEME_OVERRIDES["main_light_txt"] = 1;
  30. $THEME_OVERRIDES["quotes"]=0;
  31. $THEME_OVERRIDES["font_family"]=0;
  32. $THEME_OVERRIDES["font_size"]=0;
  33. $THEME_OVERRIDES["small_font_size"]=0;
  34. $THEME_OVERRIDES["menu_font_size"]=0;
  35. $THEME_OVERRIDES["folderlist_font_size"]=0;
  36.  
  37. ?>