Considered feature-complete by its maintainers.

Whois lookup

Whois result page showing drupal.org

Enables privileged users to lookup Whois information of domain names or IP addresses. Features include AJAXified results, hourly threshold, watchdog logging, and style of whois output.

Requires GPL licensed phpWhois library for whois servers list, and querying. Whois lookup form is available at ?q=whois. Alternatively, accessing ?q=whois/example.com will return Whois information for example.com

Revision Deletion

This modules enables the ability to mass delete aging node revisions. Possible settings include node type, the age of node revision before being deleted, along with a cron frequency setting.

Checkall

This module provides an extension to the builtin checkboxes element that allows developers add "check all" / "toggle" / "uncheck all" actions to them. This is specially useful for checkboxes that have a lot of elements.

Please note that Drupal 6 already has this feature available, but only for checkboxes rendered in tables, such as those used in Administration -> Content management -> Content. Checkboxes rendered elsewhere do not have this feature.

You may need to install this module when required/recommended by another contributed module, and/or you may wish to use it to enhance your own custom modules.

  • For Site Administrators - New option for checkboxes implemented by CCK Widgets

    If you use checkboxes implemented by CCK optionwidgets, node reference, user reference or content taxonomy options, then a new option in the field settings form is available to enable the Checkall feature for those widgets.

  • For Developers - Simple Usage

    To attach the checkall behavior to checkboxes elements, all you need to do is add the '#checkall' property to them. You can do so for your own forms, or you can implement hook_alter_form() to add this property to existing forms. Example:

    $form['foobar'] = array(
      '#type' => 'checkboxes',
      '#options' => $options,
      '#default_value' => $default_value,
      '#checkall' => TRUE,  // <--- this is it ;-)
    );
    

User Quota

User Quota Alteration Screen

User Quota provides a system of limiting users to create a certain number of nodes of a certain type. The framework keeps track of the history where users may have gained (or lost) a specific limit. If a user does not have a quota for a content type then they can create as many of that item as they want (as long as their roles allow it).

Alternative login ID & display names

Drupal 7

This module provides a simple interface that allows registered users to use a login name which is different than their username.

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only