README.txt 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. CONTENTS OF THIS FILE
  2. ---------------------
  3. * About Drupal
  4. * Configuration and features
  5. * Appearance
  6. * Developing for Drupal
  7. ABOUT DRUPAL
  8. ------------
  9. Drupal is an open source content management platform supporting a variety of
  10. websites ranging from personal weblogs to large community-driven websites. For
  11. more information, see the Drupal website at http://drupal.org/, and join the
  12. Drupal community at http://drupal.org/community.
  13. Legal information about Drupal:
  14. * Know your rights when using Drupal:
  15. See LICENSE.txt in the same directory as this document.
  16. * Learn about the Drupal trademark and logo policy:
  17. http://drupal.com/trademark
  18. CONFIGURATION AND FEATURES
  19. --------------------------
  20. Drupal core (what you get when you download and extract a drupal-x.y.tar.gz or
  21. drupal-x.y.zip file from http://drupal.org/project/drupal) has what you need to
  22. get started with your website. It includes several modules (extensions that add
  23. functionality) for common website features, such as managing content, user
  24. accounts, image uploading, and search. Core comes with many options that allow
  25. site-specific configuration. In addition to the core modules, there are
  26. thousands of contributed modules (for functionality not included with Drupal
  27. core) available for download.
  28. More about configuration:
  29. * Install, upgrade, and maintain Drupal:
  30. See INSTALL.txt and UPGRADE.txt in the same directory as this document.
  31. * Learn about how to use Drupal to create your site:
  32. http://drupal.org/documentation
  33. * Download contributed modules to sites/all/modules to extend Drupal's
  34. functionality:
  35. http://drupal.org/project/modules
  36. * See also: "Developing for Drupal" for writing your own modules, below.
  37. APPEARANCE
  38. ----------
  39. In Drupal, the appearance of your site is set by the theme (themes are
  40. extensions that set fonts, colors, and layout). Drupal core comes with several
  41. themes. More themes are available for download, and you can also create your own
  42. custom theme.
  43. More about themes:
  44. * Download contributed themes to sites/all/themes to modify Drupal's
  45. appearance:
  46. http://drupal.org/project/themes
  47. * Develop your own theme:
  48. http://drupal.org/documentation/theme
  49. DEVELOPING FOR DRUPAL
  50. ---------------------
  51. Drupal contains an extensive API that allows you to add to and modify the
  52. functionality of your site. The API consists of "hooks", which allow modules to
  53. react to system events and customize Drupal's behavior, and functions that
  54. standardize common operations such as database queries and form generation. The
  55. flexible hook architecture means that you should never need to directly modify
  56. the files that come with Drupal core to achieve the functionality you want;
  57. instead, functionality modifications take the form of modules.
  58. When you need new functionality for your Drupal site, search for existing
  59. contributed modules. If you find a module that matches except for a bug or an
  60. additional needed feature, change the module and contribute your improvements
  61. back to the project in the form of a "patch". Create new custom modules only
  62. when nothing existing comes close to what you need.
  63. More about developing:
  64. * Search for existing contributed modules:
  65. http://drupal.org/project/modules
  66. * Contribute a patch:
  67. http://drupal.org/patch/submit
  68. * Develop your own module:
  69. http://drupal.org/developing/modules
  70. * Follow best practices:
  71. http://drupal.org/best-practices
  72. * Refer to the API documentation:
  73. http://api.drupal.org/api/drupal/7