Considered feature-complete by its maintainers.

Yelp Reviews Plus

This module provides a block which displays Yelp reviews about a specific business with the option of displaying review excerpts. The block template is customizable via Drupal templates.

Checklist API

Example checklist

Checklist API Provides a simple interface for modules to create fillable, persistent checklists that track progress with completion times and users. You don't need this unless you're a module developer or you want to use a module that calls for it.

Tsort

tsort in action

Tsort is a table column sort for non-sql tables. It allows you to sort a table by any column heading, where the table data is not directly pulled from a database, but is simply in an array of rows. It does this by providing a new function, tsort_nonsql_sort(), which will sort your rows for you according to the column which has been clicked.

Example Usage

The following example shows a full example of usage. The function which is provided by this module is the following one:

  tsort_nonsql_sort($rows, $sort, $column);

All the rest of the sample code below is standard Drupal coding for a table which
has rows and can be themed.

<?php
/**
* Create a sorted version of the players table
* The players table has the following columns:
* - uid, name, rating, played, won, lost, drawn, rating, rating change, current
*/
function gamer_players() {
$sql = "SELECT uid FROM {users} ORDER BY name";
// Converted to the D7 database API syntax.
$result = db_query($sql);
foreach ($result as $record) {
if ($record->uid <> 0) {
$player_stats = gamer_load_user_stats($record->uid);
$rows[] = array(
'uid' => $record->uid,
'name' => "" . $player_stats['name'] . "",
'rating' => $player_stats['rating'],

geolocation

This module adds a form to the user profile that will allow geolocate yourself from the device you are using, or enter an address to geolocate.

Restrict node page view

Have you ever used a slideshow nodetype that you need to be published but don't want the node be accessible by itself using then node/XXX path? This module is for you!

Purl Search API

If you have different search_api views that need to be filtered using the same facets, this module can manage that persistence for

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only