Drush update modules

Component type

module

Categories

Maintenance status

Development status

Downloads

40

Component created

Component changed

Provides drush hooks to allow 'update modules' to be installed before or after hook_update_N() is run.

This allows projects where lots of updates are being added to do so without worrying about merge conflicts.

Update modules should have the following in their .info in order to get picked up:

update type = before

Or

update type = after

All logic should happen in hook_install()

Field Split

Component type

module

Maintenance status

Development status

Downloads

2266

Component created

Component changed

This module can split field values into multiple fields on the Manage display page. Imagine you have an entity reference field with two values and the first one should goes into region* "Left" and the other one goes into region* "Right". Currently you only have one field which you can move into a region but with this module you can split that field so that you have 2 fields.

The Loch Ness Module

Component type

module

Maintenance status

Development status

Downloads

322

Component created

Component changed

This is a module that will allow for locking of editing of nodes and things. If you need advanced features please take a look at Content Locking. This module is designed with simplicity in mind. All locks are ephemeral and they are stored in the cache table.

Mobile detect - drupal 8

Component type

module

Maintenance status

Development status

Component created

Component changed

drupal 8 module for detect mobile devices.

This is a lightweight mobile detection based on the Mobile_Detect.php library.
github link: mobile_detect

Twig Helper

{% if is_mobile() %}
{% if is_tablet() %}
{% if is_device('iphone') %}
{% if is_ios() %}
{% if is_android_os() %}


PHP examples

Simple nodeblock

Component type

module

Maintenance status

Development status

Downloads

654

Component created

Component changed

This module allows you to turn one chosen content type into blocks. It's really simple, without any bells and whistles, just one click configuration. Works with Entity translation out of the box. It's very handy if you want to attach fields to your blocks because in Drupal 7 blocks are not fieldable entities. With this module you can add image fields to your blocks without a problem.