Drupal
From Encoresoup - The Ultimate Guide to Free/Open Source Software
|
| This article or section invokes the Wikipedia review template Copyedit. This is not relevant to Encoresoup. This template invocation should be removed. |
This article or section has multiple issues:
Please help improve the article or discuss these issues on the talk page. |
| Drupal | |
|---|---|
| | |
| | |
| Home page of a default Drupal installation (with a Lorem Ipsum article). | |
| Stable release |
6.5 (08 October 2008) |
| OS: | Cross-platform |
| Genre: | Content management framework, Content management system, Community and Blog software |
| License: | GPL |
| Website: | [[Website::drupal.org]] |
Drupal (pronounced /ˈdɹuːpʰəl/) 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"[5] 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]
Drupal runs in many environments, including Windows, Mac OS X, Linux, FreeBSD, OpenBSD, Solaris 10, OpenSolaris and any platform that supports either the Apache (version 1.3+), or IIS (version IIS5+) Web server and the PHP language (version 4.3.5+). Drupal requires a database such as MySQL or PostgreSQL to store content and settings.[6]
Contents |
[edit] History
Originally written by Dries Buytaert as a bulletin board system, Drupal became an open source project in 2001.[7] Drupal is an English rendering of the Dutch word “druppel,” which means “drop” (as in “a water droplet”).[8] 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.[7]
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.[9][10] A large community now helps develop Drupal.[11]
As of October 2008, Drupal 6.5 is the latest release.[12] Drupal is a winner of several Packt Open Source CMS Awards.[13]
[edit] 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.[14]
[edit] 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.[15]
The core Drupal distribution provides a number of features[15], 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)
[edit] Core themes
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.[16]
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.[17]
[edit] Translations
As of February 2008, translations for Drupal's interface were available in 44 languages plus English (the default).[18] Some read right to left, such as Arabic and Hebrew. Drupal 6 provides improved support for content and content administration in multiple languages.[19]
[edit] 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.[19]
A module for version 5.x provides identical functionality, but it is not included in the core release.[20]
[edit] Extending Drupal core
Drupal core is designed to be modular with a system of "hooks" and "callbacks", which are accessed internally via an API.[21] 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. To maintain this separation, Drupal administrators are instructed to avoid altering Drupal core's software.
[edit] 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[22] free modules (as of June 1, 2008), written and contributed to by the Drupal community.
Two modules are particularly important to typical Drupal installations:
- Content Construction Kit (CCK)[23] 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[24] 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.[25]
[edit] 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[26] or, to a lesser extent, the XTemplate engine.[27] Some templates use hard-coded PHP.
Although early versions of Drupal's theming system were criticized[28] 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. 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[29] at the Drupal web site are released under GPL license (free), and most of them are demonstrated at the Drupal Theme Garden[30].
[edit] Criticism
[edit] Lack of object orientation
Drupal exclusively uses procedural programming, not object-oriented programming (OOP). While Drupal approximates some of OOP's features,[31] 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.[32]
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.[33] 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.[34]
[edit] Poor usability
- Some aspects of Drupal's administration interface can be confusing and intimidating, particularly for new administrators[35]. According to the Interaction Design and Information Architecture program at the University of Baltimore, Drupal lacks an intuitive, easy administration user interface[36][37][38]. 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[39][40]and the University of Baltimore[41] are solved. Usability will be one of the main improvements in Drupal 7 that will close the gap with easier CMS.[42]
[edit] Steep initial learning curve
- Drupal may be powerful, but it is also complex. The key is overcoming its steep initial learning curve[43][44][45]. 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.[46]
[edit] Security response record
From January to May 2008, five security vulnerabilities were reported and fixed in Drupal core.[47] Security holes were also found and fixed in 25 of the 2147 user-contributed modules.[48]
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.[49] Additionally, Drupal.org maintains a security announcement mailing list, a history of all security advisories,[50] a security manual[51], and an RSS feed with the most recent security advisories.[52]
[edit] 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 [53] was used for DeanSpace, which hosted many independent Web sites supporting the 2004 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[54]. 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[55].
[edit] 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.[56]
[edit] 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.[57] The last major conference in the USA, Drupalcon Boston 2008, attracted over 800 people.[58]. The last European conference, Drupalcon Sgezed 2008, held in late August 2008, had an attendance of 500.
There are a number of active Drupal forums,[59] mailing lists[60], and discussion groups.[61] Drupal also maintains several IRC channels on the Freenode network.[62]
[edit] See also
- Content management system
- List of content management systems
[edit] Notes
- ↑ Drupal Licensing FAQ
- ↑ Drupal Overview
- ↑ Drupal Requirements
- ↑ 4.0 4.1 Drupal Features
- ↑ The Drupal Overview http://drupal.org/node/265726]
- ↑ Drupal's System Requirements
- ↑ 7.0 7.1 Drupal's Official History page
- ↑ Translation of Druppel (Dutch) to English
- ↑ "Drupal Download Statistics (2008)," http://buytaert.net/drupal-download-statistics-2008
- ↑ "Drupal Download Statistics (2007)," http://buytaert.net/tag/statistics
- ↑ Growth Graphs
- ↑ Drupal.com's download page
- ↑ http://www.packtpub.com/open-source-cms-award-previous-winners
- ↑ Drupal changelog
- ↑ 15.0 15.1 Drupal's Core Modules
- ↑ Drupal Announces garland is core theme
- ↑ Drupal.com's color module description
- ↑ "Translations," Drupal (February 18, 2008)
- ↑ 19.0 19.1 Description of Drupal 6.0 new features
- ↑ Drupal update status module page
- ↑ Drupal's API page
- ↑ Drupal modules
- ↑ Content Construction Kit
- ↑ Views
- ↑ My Drupal predictions for 2008 | Dries Buytaert
- ↑ "PHPTemplate theme engine", Drupal.org.
- ↑ "XTemplate theme engine", Drupal.org.
- ↑ "How does Drupal compare to Mambo?" discussion thread, Drupal.org. - Old, but still interesting
- ↑ Drupal themes
- ↑ Drupal Theme Garden
- ↑ Drupal Programming from an Object-Oriented Perspective. drupal.org (2008-02-13). Retrieved on 2008-06-07.
- ↑ Drupal Programming from an Object-Oriented Perspective. drupal.org (2008-02-13). Retrieved on 2008-06-07.
- ↑ Chaffer, Jonathan (2005-03-29). Drupal programming from an object-oriented perspective. drupal.org. Retrieved on 2008-03-28.
- ↑ Drupal 7 and PHP 5.2
- ↑ Drupal Addresses Security In 6.3, Usability in 7 (2008-07-10).
- ↑ Drupal Usability Research Report (2008-05-01).
- ↑ Drupal usability tests from the University of Baltimore with community solutions (2008-06-26).
- ↑ Usability, usability, and usability (2008-07-03).
- ↑ First results from usability testing (2008-03-10).
- ↑ Report from Formal Drupal (2008-03-03).
- ↑ Usability, usability, and usability (2008-07-03).
- ↑ Starting to work on Drupal 7 (2008-02-04).
- ↑ Harnessing Drupal for Citizen Journalism (2007-01-25).
- ↑ CMS Review: Drupal (2007-2008).
- ↑ Drupal Addresses Security In 6.3, Usability in 7 (2008-07-10).
- ↑ Dries Buytaert's Vision of Drupal (2008-03-31).
- ↑ Security announcements | drupal.org
- ↑ Security announcements | drupal.org
- ↑ Update Status module
- ↑ Security advisories
- ↑ Drupal security manual
- ↑ Security RSS feed
- ↑ Predictions for 2004 | drupal.org
- ↑ CivicSpace
- ↑ See http://drupal.org/project/Installation+profiles
- ↑ Acquia FAQ
- ↑ Drupal.org stats
- ↑ Drupalcon Boston 2008
- ↑ Drupal forums
- ↑ Drupal mailing lists
- ↑ Drupal groups
- ↑ Drupal IRC channels
[edit] Further reading
- Douglass, Robert T., Mike Little, and Jared W. Smith. Building Online Communities With Drupal, phpBB, and WordPress. New York: Springer Verlag/Apress, 2005. ISBN 1590595629.
- Gillmor, Dan. We the Media: Grassroots Journalism by the People for the People. Sebastopol, Calif.: O’Reilly, 2004. ISBN 0-596-00733-7.
- Graf, Hagen. Drupal. Community-Websites entwickeln und verwalten mit dem Open Source-CMS. Munich: Addison-Wesley, 2006. ISBN 3827323215. (German)
- Mercer, David. Drupal: Creating Blogs, Forums, Portals, and Community Websites. Birmingham, England: Packt Publishing, 2006. ISBN 1904811809.
- Peacock, Michael. Selling Online with Drupal e-Commerce. Birmingham, England: Packt Publishing, 2008. ISBN 978-1-847194-06-0
- Shreves, Ric. Drupal 5 Themes. Birmingham, England: Packt Publishing, 2007. ISBN 1847191827.
- Trippi, Joe. The Revolution Will Not Be Televised: Democracy, the Internet, and the Overthrow of Everything. New York: ReganBooks, 2004. ISBN 0-06-076155-5.
- VanDyk, John K., and Matt Westgate. Pro Drupal Development. New York: Springer Verlag/Apress, 2007. ISBN 1590597559.
- Drupal review
- InfoWorld review of 5 open source CMSs - Oct. '07
[edit] External links
- Drupal website
- Drupal developer API documentation
- Drupal Association website
- Drupal Modules - Third Party site that lists all the Drupal Modules with rating features etc.
- Heebie Drupal - Third Party site that has some useful features (UberSearch, Theme Viewer) and articles

![Dive Into Python [Amazon] Dive Into Python [Amazon]](http://openx.eclecticdave.com/images/41SrdI6zgFL._SL160_.jpg)
![Free As In Freedom [Amazon] Free As In Freedom [Amazon]](http://openx.eclecticdave.com/images/517VDdnmbFL._SL160_.jpg)
![Linksys NAS200 Network Storage System with 2 Bays [Amazon] Linksys NAS200 Network Storage System with 2 Bays [Amazon]](http://openx.eclecticdave.com/images/418B2RSYTAL._SL160_.jpg)

