September

Download our free Drupal topic icons pack

Aaron Stanush

These icons were originally created to correspond with session tracks for the Drupalcon Szeged 2008 conference. They didn’t end up being used, but that doesn’t mean we’re going to forget about them. Now you can download and use these hot icons for your own Drupal-related events, projects, and websites. These icons are released under the GPLv3 so they are yours to use, modify, and rerelease.

Download the Drupal topic icons pack (1.5MB)

Decorators and directories

Nodes have evolved remarkably over Drupal’s history. In Drupal 4.7, node types were typically created by modules that “owned” their node types. There was no way to create a node type without a module behind it. Modules creating node types would implement hook_node_info() and directly handle the the main loading, saving, and editing of the node type. Drupal core handled the loading and saving of the title and body. Modules doing this were effectively subclassing a pseudo-abstract node class (a class containing title and body only) in core and adding their own fields.