Better Module Dependencies

Component type

module

Maintenance status

Development status

Downloads

5136

Component created

Component changed

This module enhances modules list page and comes in handy if you have a large amount of modules installed on your Drupal website. In cases like that each module's requirements list becomes larger and larger, therefore it becomes very hard to read and work with module dependencies. So what this module actually does is making any module dependency clickable.

Client js error log

Component type

module

Categories

Maintenance status

Development status

Downloads

477

Component created

Component changed

Client side JavaScript error logging module allows you to see errors happen on client browser.

To discover problems on server side sometimes quite easy, just check log files (e.g. Apache log) but you do not really know what happen on client side that is like a black box. You can get information based on user feedback if something wrong in the front-end code. This module helps you to keep in touch with your JavaScript code, you will know the possible problems arisen in the users browser. So you can find the problems more easy.

View mode

Component type

module

Maintenance status

Development status

Downloads

342

Component created

Component changed

View mode provides a field type to store view modes.

This can be used to allow users to pick from a set of preselected view modes, and is best integrated with Display Suite or to provide custom logic based on user-selected view modes.

This provides an alternative to storing view modes in an options field that cannot be changed after the field contains data and is especially useful when you want to give editors the possibility to select view modes but don't want to use Panels or give access to place entities on your page in a certain view mode.

Advanced Update

Component type

module

Categories

Maintenance status

Development status

Downloads

1054

Component created

Component changed

Description

The Advanced Update module provide a simple way to apply updates and migrations without using the update module of Drupal.

Problematic

Problems of using the core update module in a Drupal project:

Migrate group settings

Component type

module

Maintenance status

Development status

Downloads

603

Component created

Component changed

This module allows you to modify migrate settings (database connection) of your migration groups (Migration module).

It solves the problem which happens once "Drupal-to-Drupal data migration" wizard is already executed: How do I alter database settings without losing migration mappers?

Sponsorship

Drauta

JSE

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

JSE (JSON slimmed entity) let's you create API endpoints with a hook

function MODULE_jse_info() {
    return array(
        'projects' => array(
            'label' => t('Projects'),
            'callback' => 'example_get_jse_entity_ids',
        )
    );
}

function example_get_jse_entity_ids() {
    return array(
        'node' => array(1, 5, 56),
        'user' => array(23, 1)
    );
}

The result will be a JSON output with the nodes rendered by the view mode json.

Drush Delete All

Component type

module

Maintenance status

Development status

Downloads

1414

Component created

Component changed

This module provides the drush command to delete all the dummy contents through drush Command.

Currently it will work with the command,
drush delete-all article

How to use?

  1. Download and enable as like any other module
  2. Through terminal Go to 'Project root folder' and run the command drush cc drush
  3. Then run drush delete-all machine-name-of-content-type