Maintainers strive to actively monitor issues and respond in a timely manner.

Feeds: Files

This module adds a feeds processor that can directly create files from feeds.

Drupal User Group

Summary

This distribution will be created for Drupal User Groups to help them with and unified platform to manage their events and the community.

Features

Coming soon...

Story document is available here in English and Hungarian language.

field2attr

This module let you write less code to access field values.

Basic usage:

Let's say we have a node type called product, and has 3 fields.

field_color // simple textfield
field_image // image
field_type // single select term

In our module file:

// Implements hook_field2attr_node().
function mymodule_field2attr_node() {
    return array(
        'product' => array('color', 'image', 'type'),
    );
}

There are 2 attributes will attach to the node object for each field:

$node->_ATTR;  // The single first field item value.
$node->_ATTR_items; // Same as field_get_items().

Now we can acces this fields like:

$node->_color;  // The text value.
$node->_image; // The image file uri.
$node->_type // The term id.

// With $node->_ATTR_items we got the field items array, same as field_get_items.
// php not allow field_get_items()[0] syntax, but now we can use $node->_ATTR_items[0]['safe_value'].
$node->_color_items; // Same as field_get_items('node', $node, 'field_color');

Custom field item element key:
With $node->_image can get the image file uri, but some how we want just the image file id, change the hook function to:
<?php
// Implements hook_field2attr_node().
function mymodule_field2attr_node() {
return array(
'product' => array('color', 'image'=>'#fid', 'type'),
);
}

Unique Queue

Allows other modules to create unique queue items. Uniqueness is only maintained per queue and for non-claimed items.

Itoggle poc

What is this about?

This is a prove of concept extension of the seven admin theme that replaces all checkboxes with itoggle switches.

How to install:

  1. Download the theme into an arbitrary themes directory.
  2. Apply the core patch (from the patches/ directory)
  3. Activate the "Itoggles prove of concept" theme in your settings

Known to work in:

  • Recent firefox versions
  • Recent chromium versions

Blank Content Fields List

The Blank content fields list module lets you very easily create related/blank fields (Which fields you have not filled when you entered the data on node.) content list on your Drupal site.

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained