Field Collection Workbench Moderation
This module provides better support for Workbench Moderation on nodes containing Field Collections:
Correctly sets the default revision status for Field Collection items to match the moderation status (published or otherwise) of the host node. This ensures that any Views using relationships to access Field Collection item fields will display fields from the published node, instead of using fields from the latest revision. See Most recent Field Collection revision always appears in View when using Workbench Moderation for more detail.
A patch to Field Collection has been provided in the issue linked above which. If that and the required patch below are both committed, this module will no longer be needed.
Requirements
Workbench Moderation
Field Collection
If you are using multi-value Field Collection fields, you will also need to apply the patch at Field collection doesn't play nice with workbench moderation (patch).
EXIF Scrub
Removes EXIF metadata from uploaded images. In future versions I hope to have options to allow either the system or an individual user (with proper permissions) to re-add geotags to the image.
Ideally, the module could have configurable which metadata values to strip and which to keep.
How it works:
On file upload, it checks to see if the file has a mimetype of "image/jpeg". If it does, it uses ImageMagick to strip the metadata and resave.
Requires: ImageMagick
Hours of Operation
Google App Email
This module can display gmail unread count and email title.
This module use the Google Token Management module.
Subscriptions by Reference
This module will allow users to subscribe to new content based on reference fields (see http://drupal.org/node/286789).
Module supports both node references and entity references fields on nodes.
Currently this module can be used by developers by adding a hook to their module, which will define the fields that will be available to users for subscription:
<?php
/**
* Implements hook_subscriptions_reference_info()
*/
function mymodule_subscriptions_reference_info() {
return array(
'question_answers' => array(
'parent' => 'question',
'child' => 'answer',
'field' => 'field_answers_question',
'ref_item' => 'nid', // this will be 'target_id' for entity reference
));
}
?>This hook will allow users to receive notifications about new answers created for questions they are subscribed to.
Requirements
This project extends Subscriptions.
