Toolbar Clear Cache

Component type

module

Maintenance status

Development status

Component created

Component changed

You don't have the latest Drush version available and you want to clear the Drupal cache easier? Here is the solution!

Just enable the module and enable it, you will see the "Clear cache" link :)

git clone --branch 8.x-1.x http://git.drupal.org/sandbox/yan_nick/2100243.git toolbar_clear_cache

Persistent Arrays API

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This projects provides an API for module developers to store arrays in the database using PHP's serialize function. The following function does just that.

persistent_array_set($name, $array);

The saved array can be fetched anywhere in the code with the following function, which uses PHP's unserialize function.

Block usage

Component type

module

Maintenance status

Development status

Downloads

989

Component created

Component changed

This module adds a small block usage overview to the block's config form/page.

Currently implemented sources:

  • Context
  • Block reference (entities by field items)
  • Node-level blocks (entities by nlb table)

If you know other modules that use/show/store blocks, let me know or add your own hook to implement it. See block_usage.api.php for a bad example.

Masquerade as Role

Component type

module

Maintenance status

Development status

Downloads

2367

Component created

Component changed

This module allows a user to masquerade as a set of roles (instead of masquerading as an existing user).

Under the hood, a temporary account with the appropriate roles is created on the fly and deleted when switching back.

If users do not switch back, temporary accounts are deleted by cron.

Permissions Variable

Component type

module

Categories

Maintenance status

Development status

Downloads

1201

Component created

Component changed

Permissions Variable is a simple alternative to Features/Strongarm/Hooks based
workflows that introduces global permissions management through $conf that
overrides permissions set in the UI and stored in the database.

The $conf['permissions'] variable is an associative array with permission
machine names as keys and arrays of role names as values. Simply define this
variable inside your settings.php file, or better, in a file included in your
settings.php file, like 'settings.permissions.inc'.

Shredder

Component type

module

Categories

Maintenance status

Development status

Downloads

570

Component created

Component changed

ATTENTION !!! This module will destroy your data in your drupal installation. You can select which entites, bundles, field types and fields you want to destroy and shredder will leave shreddered data for you.

Bild Content Selection

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This module provides a view page where a user can choose content from the view and reorder it.

Other modules can hook into it by adding their own submit handlers - that way they can do whatever they want with the selected and ordered nodes.

Using views means that you can change the path of the page, access permissions, exposed filters, fields..