Drupal

Article on other languages:

del.icio.us del.icio.us
Digg Digg
Furl Furl
Reddit Reddit
Rojo Rojo
Add to OnlyWire
Drupal

Home page of a default Drupal installation (with a Lorem Ipsum article).
Latest release 6.6 / 22 October 2008; 16 days ago
Written in PHP
OS Cross-platform
Type Content management framework, Content management system, Community and Blog software
License GPL
Website drupal.org

Drupal (pronounced /ˈdru-pal/) is a free and open source[1] modular framework and content management system (CMS) written in the programming language PHP.[2][3] Like many modern CMSs, Drupal allows the system administrator to create and organize content, customize the presentation, automate administrative tasks, and manage site visitors and contributors.[4]

Drupal is sometimes described as a "Content Management Framework"[2] as its capabilities extend from content management to enabling a wide range of services and transactions. Although Drupal does offer a sophisticated programming interface, basic web site installation and administration can be accomplished with no programming.[4]

Contents

History

Originally written by Dries Buytaert as a bulletin board system, Drupal became an open source project in 2001.[5] Drupal is an English rendering of the Dutch word “druppel,” which means “drop” (as in “a water droplet”).[6] The name was taken from the now-defunct Drop.org website, whose code slowly evolved into Drupal. Buytaert wanted to call the site “dorp” (Dutch for “village,” referring to its community aspects), but made a typo when checking the domain name and thought it sounded better.[5]

From May 2007 to April 2008, Drupal was downloaded from the Drupal.org website more than 1.4 million times, an increase of approximately 125% from the previous year.[7][8] A large community now helps develop Drupal.[9]

As of October 2008, Drupal 6.6 is the latest release.[10] Drupal is a winner of several Packt Open Source CMS Awards.[11]

Drupal core

The official release of Drupal, known as "Drupal core", contains basic features common to most CMSs. These include the ability to register and maintain individual user accounts, administration menus, RSS-feeds, customizable layout, flexible account privileges, logging, a blogging system, an Internet forum, and options to create a classic "brochureware" Web site or an interactive community Web site.

Web site content can be contributed by registered or anonymous users (at the discretion of the administrator), and made accessible to Web visitors by a variety of criteria including by date, category, searches, etc. Drupal core also includes a hierarchical taxonomy system which allows content to be categorized or "tagged" with keywords for easier access.

Drupal maintains a detailed changelog of core feature updates by version.[12]

Core modules

Drupal core also includes "core modules" which can be enabled by the administrator to extend the stock functionality of the core Web site.[13]

The core Drupal distribution provides a number of features[13], including:

  • Access statistics and logging
  • Advanced search functions
  • Caching and feature throttling for improved performance under load
  • Comments, forums, and polls
  • Descriptive URLs (for example, "www.example.com/products" rather than "www.example.com/?q=node/432")
  • Multi-level menu system
  • Multi-user content creation and editing
  • OpenID support
  • RSS Feed and Feed Aggregator
  • Security/new release update notification
  • User profiles
  • Various access control restrictions (user roles, IP addresses, email)
  • Workflow tools (Triggers and Actions)

Core themes

The color editor being used to adjust the "Garland" core theme

Drupal core includes several "core themes", which customize the aesthetic look-and-feel of the site. These themes can be chosen by the administrator via a special menu.[14]

The Color Module, introduced in Drupal core 5.0, allows administrators to change the color scheme of certain themes via a Web-browser interface. This feature was added to allow a higher level of customization for the average non-coder.[15]

Translations

As of February 2008, translations for Drupal's interface were available in 44 languages plus English (the default).[16] Some read right to left, such as Arabic and Hebrew. Drupal 6 provides improved support for content and content administration in multiple languages.[17]

Auto-update notification

Beginning in version 6.0, Drupal can automatically notify the administrator when a new version of a contributed module, theme, or the Drupal core itself, becomes available. This is a feature which may help to keep a Drupal installation up-to-date with the latest features and security fixes.[17]

A module for version 5.x provides identical functionality, but it is not included in the core release.[18]

Extending Drupal core

Drupal core is designed to be modular with a system of "hooks" and "callbacks", which are accessed internally via an API.[19] This design allows third-party "contributed" (often abbreviated to "contrib") modules and themes to extend or override Drupal's default behaviors without changing Drupal core's code.

Drupal's modular design, which isolates Drupal core's files from contributed module and themes, increases flexibility and security and allows Drupal administrators to cleanly upgrade to new releases of Drupal core without potentially overwriting their site's customizations.[citation needed] To maintain this separation, Drupal administrators are instructed to avoid altering Drupal core's software.

Contributed modules

Contributed drupal modules offer a variety of features including image galleries, custom content types and content listings, WYSIWYG editors, private messaging, 3rd-party integration tools, and more. The Drupal Web site lists 2332[20] free modules (as of June 1, 2008), written and contributed to by the Drupal community.

Two modules are particularly important to typical Drupal installations:[citation needed]

  • Content Construction Kit (CCK)[21] allows site administrators to dynamically create content types. A content type describes any kind of information to be stored in the Web site's database. These may include, but are not limited to, events, invitations, reviews, articles, or products.
  • Views[22] facilitates the retrieval and presentation of content to site visitors.

The CCK API is scheduled to be integrated into Drupal as a core module starting with Drupal 7, and Views (without its user interface) will follow at some point thereafter.[23]

Contributed themes

Contributed themes adapt or replace a Drupal site's default look and feel.

drupal themes use standardized formats that may be generated by common third-party theme design engines. Many themes for Drupal are written in the PHPTemplate engine[24] or, to a lesser extent, the XTemplate engine.[25] Some templates use hard-coded PHP.

Although early versions of Drupal's theming system were criticized[26] for being less design-oriented and more complicated than those for Mambo, Joomla! and Plone, the inclusion of the PHPTemplate and XTemplate engines in Drupal has addressed some of these concerns.[citation needed] The new Drupal 6 theming system utilizes a template engine in an attempt to further separate HTML/CSS from PHP. A new Drupal development module, Devel, provides assistance to theme authors who use Drupal 6.

Community contributed drupal themes[27] at the Drupal web site are released under GPL license (free), and most of them are demonstrated at the drupal theme Garden[28].

Criticism

Lack of object orientation

Drupal exclusively uses procedural programming, not object-oriented programming (OOP). While Drupal approximates some of OOP's features,[29] its lack of OOP results in the following:

  • No encapsulation enforced by the underlying programming language system. This precludes the use of private data and causes nonexistent enforcement of namespace separation.
  • Less efficient code reuse since object inheritance is "weak" and polymorphism is only approximated in the rendering layer.[29]

Drupal's defenders counter that even though PHP's OOP language features are not directly implemented (to ensure compatibility with older 4.x versions of PHP), OOP and aspect-oriented programming (AOP) principles are present in Drupal's design.[29] This will help ease the transition to future versions of Drupal core, which, starting with version 7, will begin to take advantage of OOP provided by PHP 5. Drupal 7 will not be backwards compatible with prior PHP releases.[30]

Poor usability

  • Some aspects of Drupal's administration interface can be confusing and intimidating, particularly for new administrators[31]. According to the Interaction Design and Information Architecture program at the University of Baltimore, Drupal lacks an intuitive, easy administration user interface[32][33][34]. The administration area is regarded as clunky and cryptic with Drupal version 5 and 6, but improved ease of use is planned with the upcoming version 7. According to Dries, Drupal 7 won't be released until 90% of the problems identified by the University of Minnesota[35][36]and the University of Baltimore[34] are solved. Usability will be one of the main improvements in Drupal 7 that will close the gap with easier CMS.[37]

Steep initial learning curve

  • Drupal may be powerful, but it is also complex. The key is overcoming its steep initial learning curve[38][39][31]. Most casual users are willing to sacrifice features for ease of use making Drupal less popular than more user-friendly CMS's despite its enhanced functionality.[40]

Security response record

From January to May 2008, five security vulnerabilities were reported and fixed in Drupal core.[41] Security holes were also found and fixed in 25 of the 2147 user-contributed modules.[41]

As security holes are discovered, Drupal core is regularly updated to new versions. Administrators of Drupal sites are automatically notified of these new releases via the Update Status module.[42] Additionally, Drupal.org maintains a security announcement mailing list, a history of all security advisories,[41] a security manual[43], and an RSS feed with the most recent security advisories.[44]

Supported operating system environments

Drupal can run on any platform that can support:

Distributions

Customized Drupal distributions include some repackaged third-party modules, some with modifications to the core, including vbDrupal, which is Drupal integrated with vBulletin. [1] Drupal 4.2 [45] was used for DeanSpace, which hosted many independent Web sites supporting the 2004 U.S. presidential campaign of Howard Dean. After the Dean campaign ended, the DeanSpace project grew into CivicSpace, a Drupal-based "grassroots organizing platform that empowers collective action inside communities and cohesively connects remote groups of supporters." Thus CivicSpace is a spinoff distribution originally based on Drupal 4.2.

Many innovations in CivicSpace have been incorporated back into the Drupal project itself[46]. Features particularly useful for nonprofit organizations and political campaigns are provided in the CiviCRM module for Drupal 5.0 and higher.

It has been suggested to distribute "pre-made" Drupal installations that are pre-customized with third party modules and configured towards a particular type of Web site: an online store, a music review site, a blogging site, etc. Drupal 5.x goes in this direction, providing a set of "installation profiles" tailored to specifics goals[47].

Acquia

In 2007, a Drupal-focused company, Acquia, was created by Drupal project lead Dries Buytaert and Jay Batson. Acquia announced a subscription-based service for Drupal at Drupalcon Boston 2008 and started services with Acquia Drupal, a distribution based on Drupal 6, in September 2008. Subscriptions include one or more Drupal distributions, a set of companion network-supplied value-add services, and access to a Technical Assistance Center.[48]

Community

Drupal has a large community of users and developers. More than 350,000 user accounts have been created on Drupal.org, and over 2000 people have signed up for developer accounts.[49] The last major conference in the USA, Drupalcon Boston 2008, attracted over 800 people.[50] The last European conference, Drupalcon Szeged 2008, held in late August 2008, had an attendance of 500.

There are a number of active Drupal forums,[51] mailing lists[52], and discussion groups.[53] Drupal also maintains several IRC channels on the Freenode network.[54]

See also

Notes

  1. ^ Drupal Licensing FAQ
  2. ^ a b Drupal Overview
  3. ^ a b Drupal System Requirements
  4. ^ a b Drupal Features
  5. ^ a b Drupal's Official History page
  6. ^ Translation of Druppel (Dutch) to English
  7. ^ "Drupal Download Statistics (2008)," http://buytaert.net/drupal-download-statistics-2008
  8. ^ "Drupal Download Statistics (2007)," http://buytaert.net/tag/statistics
  9. ^ Growth Graphs
  10. ^ Drupal.com's download page
  11. ^ http://www.packtpub.com/open-source-cms-award-previous-winners
  12. ^ Drupal changelog
  13. ^ a b Drupal's Core Modules
  14. ^ Drupal Announces garland is core theme
  15. ^ Drupal.com's color module description
  16. ^ "Translations," Drupal (February 18, 2008)
  17. ^ a b Description of Drupal 6.0 new features
  18. ^ Drupal update status module page
  19. ^ Drupal's API page
  20. ^ drupal modules
  21. ^ Content Construction Kit
  22. ^ Views
  23. ^ My Drupal predictions for 2008 | Dries Buytaert
  24. ^ "PHPTemplate theme engine", Drupal.org.
  25. ^ "XTemplate theme engine", Drupal.org.
  26. ^ "How does Drupal compare to Mambo?" discussion thread, Drupal.org. - Old, but still interesting
  27. ^ drupal themes
  28. ^ drupal theme Garden
  29. ^ a b c "Drupal Programming from an Object-Oriented Perspective". drupal.org (2008-02-13). Retrieved on 2008-06-07.
  30. ^ Drupal 7 and PHP 5.2
  31. ^ a b "Drupal Addresses Security In 6.3, Usability in 7" (2008-07-10).
  32. ^ "Drupal Usability Research Report" (2008-05-01).
  33. ^ "Drupal usability tests from the University of Baltimore with community solutions" (2008-06-26).
  34. ^ a b "Usability, usability, and usability" (2008-07-03).
  35. ^ "First results from usability testing" (2008-03-10).
  36. ^ "Report from Formal Drupal" (2008-03-03).
  37. ^ "Starting to work on Drupal 7" (2008-02-04).
  38. ^ "Harnessing Drupal for Citizen Journalism" (2007-01-25).
  39. ^ "CMS Review: Drupal" (2007-2008).
  40. ^ "Dries Buytaert's Vision of Drupal" (2008-03-31).
  41. ^ a b c Security announcements | drupal.org
  42. ^ Update Status module
  43. ^ Drupal security manual
  44. ^ Security RSS feed
  45. ^ Predictions for 2004 | drupal.org
  46. ^ CivicSpace
  47. ^ See http://drupal.org/project/Installation+profiles
  48. ^ Acquia FAQ
  49. ^ Drupal.org stats
  50. ^ Drupalcon Boston 2008
  51. ^ Drupal forums
  52. ^ Drupal mailing lists
  53. ^ Drupal groups
  54. ^ Drupal IRC channels

Further reading

External links

Article keywords: blog community creating drupal forum portal site web, building community drupal online phpbb wordpress, content drupal evaluating management practical system using web, drupal theme, free drupal theme, drupal module, 5 drupal, drupal extend that, drupal tutorial,

This article is from Wikipedia. All text is available under the terms of the GNU Free Documentation License.