Maintainers monitor issues, but fast responses are not guaranteed.

Commerce Payway

Commerce Payway is a payment module that integrates Westpac Payway API with the Drupal

Blocklink

A simple module which allows you to link an entire block (title + content) to an internal or external URL.

Views pivot

Simple module for Views. Provide views plugin style using pivot.js

Views RSS Simple

The standard RSS plugin for Views creates an RSS icon which attaches to other displays.

Testando

Teste para aprender a lidar com o Drupal.
30 de julho de 2013

Entity Administration UI

Before and After Example of filters applied by EntityAdminUIDefaultUIController

This module provides an enhanced base class for use in conjunction with the Entity module's administration pages. On it's own this module doesn't do much of anything, but when combined with the Entity module the EntityAdminUIDefaultUIController class provided here makes for a more feature full replacement for the EntityIDefaultUIController class provided with the entity module.

The primary focus is on the the main administrative listing page defined by hook_entity_info(). The page provided by the entity module is fairly straight forward and provides just a simple table with Label, and links to edit/delete an entity. This enhanced controller provides a complete set of filters and bulk operations akin to what user's are used to encountering with other entity admin pages like admin/content and admin/people in Drupal core.

To use the features provided by this module you'll need to first create your custom entity type following the normal means with the Entity module. Then, instead of using the default UI controller you can either use or extend the one provided by this module.

<?php
function hook_entity_info() {
$info['my_entity'] = array(
...
'admin ui' => array(
'path' => 'admin/my_entity',
'controller class' => 'EntityAdminUIDefaultUIController',
'menu wildcard' => '%my_entity',
),

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained