Drush Webform Health

Component type

module

Categories

Maintenance status

Development status

Downloads

1186

Component created

Component changed

Check the status of webforms using drush. The module currently supports the following commands:

drush webform-email-check

Check that all of the webforms on a website have email addresses associated with them. This command could be used to check a group of websites in bulk if needed:

#!/bin/sh
for x in $(egrep -l "define.*VERSION.*7." $(find . -name 'bootstrap.inc')); do
    cd "$(dirname "$x")";
    drush wec
    cd - > /dev/null
done;

Unish

Component type

module

Categories

Maintenance status

Development status

Downloads

9985

Component created

Component changed

This project is used during Drush's unit tests. Nothing to see here for end users.

Drupal client for Drush

Component type

module

Categories

Maintenance status

Development status

Downloads

548

Component created

Component changed

Simple module to provide Drush command to execute GET/POST request to Drupal instance.

drush dget node/1 --uid=123
drush dpost 
    admin/config/system/site-information 
    '{"site_name": "Drupal"}'

Intsall

The project just provides drush command, there's no module to be enabled

drush dl drupal_client_drush

Entity Scaffold

Component type

module

Categories

Maintenance status

Development status

Downloads

2533

Component created

Component changed

THIS IS NOT A MODULE. YOU CAN'T ENABLE IT. FOLLOW THE INSTRUCTIONS.

Overview

Entity Scaffold is intended to be an easy way of creating your own Entities by auto-generating a basic Entity which the developer can customize later.

It is mainly based on Drush, the developer may pass a name of the module/entity and a location, then, Entity Scaffold will create all the needed hooks, schema, etc.

Entity metadata hint generator

Component type

module

Categories

Maintenance status

Development status

Downloads

470

Component created

Component changed

You should only use this module if:

- You are Drupal developer
- You are using entity api
- You are using an IDE.
- You understand

entity_metadata_wrapper('node', $node = node_load(1))
    ->field_no_autocomplete
    ->unhappy();

- Don't need extra code on production site

Usage

drush entity_hint > private/files/entity_hint.php

After running Drush command, we have generated code look like this:

Settings.php generator

Component type

module

Categories

Maintenance status

Development status

Downloads

862

Component created

Component changed

Drush extension to generate settings.php files.

When deploying a site to a new environment, it is a common need to create a new settings.php file. This Drush extension provides a command that helps generating it.

At present it only generates settings.php files for Drupal 7 sites. Drupal 8 support is on the way.

Make update

Component type

module

Categories

Maintenance status

Development status

Downloads

555

Component created

Component changed

The make update command has been merged into Drush core.

Overview

Make update is a drush extension that facilitates updating a drush .make file

When issued, make update will list recommended versions of all the modules specified in your .make file

Usage

Run the command by issuing: drush make-update [MAKE], substituting [MAKE] with the location of your make file.

Composer Generate

Component type

module

Categories

Maintenance status

Development status

Downloads

3392

Component created

Component changed

This is an experimental Drush extension that will generate a composer.json file from an existing Drupal project.

Installation:

drush dl composer_generate

Usage: (Clone a site, no config--Drupal 7 only)

drush @site composer-generate > composer.json
composer install
cd htdocs
drush -y core-quick-drupal

Usage: (Create a new site using composer-project--Drupal 7 or 8)