Maintainers monitor issues, but fast responses are not guaranteed.

Linenumbers

Overview

Linenumbers is a simple text filter which adds line numbering to content.

Commerce Product Expiration

Track the expiration of product purchases.

This is a work in progress, at first it is simply be a field to be added to product entities.

Feeds Readability Parser

A Feeds parser plugin that extracts the title and content of a webpage using a PHP port of Readability.

Readability was originally developed as a Javascript bookmarklet to ease online reading by automatically extracting the content and title of a webpage, stripping out sidebars, advertisements, and other navigational cruft. The algorithm is now commonly found built in to the Safari web browser -- just look for the "Reader" icon that appears in the location bar when you browse to an article on a news site for an example of this in action.

This parser plugin provides three mapping sources for your Feeds importer: title, content, and image. Try using this plugin in combination with Feeds Self Node Processor and FileField Sources to automatically fetch the remote article's image to an image field on your target node.

Druuid

Overview

This module provides a field for adding universally unique identifiers (UUID) to Drupal entities, called a DRUUID.

It also lets you choose which type of valid RFC 4211 compliant UUID type you would like use, i.e. v3, v4 or v5.

  • Version 3 and 5 UUIDs are named based. They require a namespace (another valid UUID) and a value (the name). Given the same namespace and name, the output is always the same.
  • Version 4 UUIDs are pseudo-random.
  • UUIDs generated below validates using OSSP UUID Tool, and output for named-based UUIDs are exactly the same.

This is a pure PHP implementation see @link http://www.php.net/manual/en/function.uniqid.php#94959

Features

  1. Provides a UUID Field
    - Creates a field that can be attached to drupal entities and bundles
  2. Provides different UUID Types
    - Lets you choose which RFC compliant UUID code to use when generating DRUUIDS.

Usage

Enable the module and within your custom module =>

$my_uuid = druuid_create($version = '4', $namespace = NULL);

* Named-based UUID.
* $v3uuid = DrUUID::v3('1546058f-5a25-4334-85ae-e68f2a44bbaf', 'SomeRandomString');
* $v5uuid = DrUUID::v5('1546058f-5a25-4334-85ae-e68f2a44bbaf', 'SomeRandomString');

User picture safe update

I've got involved in 4 core 6.x->7.x update project, wherein the user pictures was damaged, or lost completely. This script could fix it.

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained