invite_og_plugin

Component type

module

Maintenance status

Development status

Component created

Component changed

Enables users to use the invite plugin to invite friends directly to their groups. This is done by hooking into the invite form, providing a selectbox with organic groups and invite friends directly into this groups.

In the organic groups' global settings, the ability to use this plugin can be set for each role individually.

Currently this is a very simple module, it just provides the invite feature in drupal 7. I will implement more features, if needed.

Flag Hidden

Component type

module

Maintenance status

Development status

Component created

Component changed

flag_hidden allows site moderators to flag a nodes and comments as needing to be hidden. It works similarly to the D6 hidden module, which explains more:

"Open Publishing" sites require transparency of the "open editing" process.

This module creates a way of removing nodes and comments from the main site, but keeping them accessible to users in a special location with an explanation of the editorial reasons for "hiding".

flag_hidden supports the following features:

Shibboleth User Provisioning

Component type

module

Maintenance status

Development status

Downloads

2423

Component created

Component changed

Overview

Provides additional functionality for sites that are using the shib_auth module for Shibboleth authentication of users.

Features

Allows administrators to manage the provisioning and de-provisioning of Shibboleth authentication for users through a new option in the user registration and user profile forms.

FieldYouTubeFork

Component type

module

Categories

Maintenance status

Development status

Component created

Component changed

This is a working youtube field for Drupal 7 by youtube field. Media module provides a different purpose.

- field youtube module (or other similar modules) - which just attach something to an entity, that is not in any central repository or media library, and is automatically deleted when the node is deleted and does not appear anywhere else.

- media module - with media assets which can be reused elsewhere in a site, but than facing problems deleting the media with the the node deletion to which it was uploaded.

drush_tasks

Component type

module

Maintenance status

Development status

Downloads

462

Component created

Component changed

A super basic way of defining tasks. Useful for when you have a bit of work to do that doesn't warrant it's own drush command.

Usage

Create a file called 'Drushfile', then define a task like so:


/**
 * @task
 * @desc "This is my task description"
 */
function blah_taskname() {
  echo "OMG TASKS
";
}

Now list your tasks:

$ drush tasks-list
 blah_taskname   :  "This is my task description" 

Now run it: