Drupal.behave

Component type

module

Maintenance status

Development status

Downloads

1186

Component created

Component changed

Super sexy Drupal JS behaviors.

API in a nutshell

Drupal.behave(...)

It's a super simple, jQuery like, chainable API.

Before: The Conventional Drupal 7 Way

(function ($) {
  Drupal.behaviors.exampleModule = {
    attach: function (context, settings) {
      $('.myDOM', context).text('Who throws a shoe?!?');
    }
  };
})(jQuery);

After: Yeah, Baby Way!

jQuery is also passed in as the third argument. Yeah, baby!

Request statistics

Component type

module

Maintenance status

Development status

Downloads

344

Component created

Component changed

SEO, presentation, themes, they all depend on an understanding of who visits your site and what they use to view your site. This module gives you a look at what they use to view your site.

SEO

Site owners and developers dive into complicated approaches to presenting sites on different browsers and multiple device formats without knowing exactly what is used on their site. SEO can suffer due to overly complex changes.

Google now tests sites for responsive design. Responsive design is now one of the top three SEO priorities.

Content Type Search in Add Content(node/add) Page

Component type

module

Maintenance status

Development status

Component created

Component changed

Content Type Search: The Drupal 7 Content Type Search module
--------------------------------------------------------------------

This module allows you to search content type in node add(node/add) page.

This version of the module only works with Drupal 7.x.

Pseudo field

Component type

module

Maintenance status

Development status

Downloads

564

Component created

Component changed

This module allows you to render an extra field as a real field (with field label).

Description

The extra fields that can be attached to the entity using
hook_field_extra_fields() lack the overall look and feel of real fields because
real fields have labels and a theme around them while extra fields initially
look pretty bare (unless you theme them manually).

Better Maintenance

Component type

module

Categories

Maintenance status

Development status

Downloads

611

Component created

Component changed

This module provides a second option for maintenance mode in Drupal. The
standard maintenance mode hides the entire site behind the maintenance message.
This module allows the whole site to be visible, however it blocks any editing
the site. This allows for a clean migration of a site between servers, with
minimal visible downtime.