Maintainers monitor issues, but fast responses are not guaranteed.

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',
),

Toolbar CSS

This simple plugin will replace the toolbar.css, and related css files with those defined in your administration theme, regardless of what the current selected theme.

Flatmin

This Flat UI inspired administration theme is a revamp of the Adminimal Theme.

Feeds Tamper: Conditionally Required Fields

A Feeds Tamper plugin that allows you to make fields required if a new item is being created OR if an existing item is being upda

External Database

This module integrates content stored on external databases with the native Drupal entities and bundles.

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained