This project is under active development.

Devel Node Access

Please note: DNA for D8+ is incomplete – don't rely on it to give comprehensive information!

Formerly part of the Devel module package, Devel Node Access (DNA) displays information related to the node access mechanism of your Drupal installation.

The {node_access} table and functionality are part of Drupal core, but they lie dormant until you install one or more node access modules that supply entries into the {node_access} table. Each node access module provides different strategies for controlling what each user can do with your nodes.

DNA has three audiences:

  • It helps Drupal admins understand what is happening on their site, visualize how node access modules interact, verify that their customizations give the intended results, and finally answer the famous question: Why does this user have access to that node?
  • It helps module and website support diagnose issues with node access on remote sites by instructing their clients to post screenshots and/or cut&paste listings of DNA output.
  • It helps node access module developers implement and test proper behavior of their modules.

DNA is a tool for module and site development; it is not intended to run continuously on production sites, and its output is of no interest to website visitors, but if you run any node access module, DNA will help you with your work.

Calendar Systems

Date Popup Widget / Node creation page

Adds support for alternative calendar systems to Drupal.

Migrator

Migrator is a UI interface on top of Migrate module.

Latest Members

The Latest Members module creates a block that you can use to show the latest members pictures (user pictures) on your site. You can also configure the block to show the number of pictures that you prefer. The default number of new user pictures is 6.

The Latest Members module does something similar to the Avatar Gallery module but with a different approach: it doesn't make use of an image map, simply a themeable set of user pictures.

Once you enable the Latest Members module, you can go to "administer » site building » blocks » latest members" where you can configure the number of latest users to show in the block.

The module output can be customized by overriding the theme_latest_members() function.

/**
 * @param $accounts
 * array of user pictures
 */
function theme_latest_members($accounts) {
  $output = '<div class="latest-members">' . implode(' ', $accounts) . '</div>'; 
  return $output;
}

Initial development was done by dangibas and completely rewritten by toemaz according to the Drupal coding standards.

Module Available For Drupal 6.x

There is now a stable version for Drupal 6.x.

Drupal 7 Version

Campaign Monitor

Administration

This module integrates the Campaign Monitor API into Drupal so you can give users the ability to subscribe and unsubscribe for your Campaign Monitor manage lists through a block on your Drupal site

Teaser block

Teaser Block is a yet simple module which allows to create blocks that contain a link to a specified node.

Pages

Subscribe with RSS Subscribe to RSS - Under active development