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

Ubercart Disable States (Zones)

Gives site builders the ability to disable zones (for all countries) in the "State/Province" dropdown on the checkout page.

Taxonomy dupecheck

Taxonomy dupecheck module prevents Drupal administrators from adding duplicate taxonomy vocabularies and/or terms. It's helpful when entering large amounts of terms or vocabularies in situations where each value must be unique. This saves time by preventing administrators from having to enforce a unique value policy through later cleanup of duplicate terms.

Git Filter

Input filter for referencing git commits. Ideally this would be used on d.o

SMS Panel

Description

SMS Panel is a module suite to provide SMS Framework with a central management panel.

Disclaimer

This module is in an early development stage, It is not intended to be used in production.

Requirements

Temporarily it's required to use a patched clone of SMS Framework 1.x branch until the 2.x branch gets available and stable. Also see: #442748: New hook system with hook_sms() for 2.x

Installation

As a minimum you might want to enable the SMS Panel API and its UI.

Dependencies

Submodules

  • SMS Panel API
  • SMS Panel UI
  • SMS Panel VIews integration
  • SMS Panel Advanced Compose (bulk)
    • Batch Dispatcher
    • Cron Dispatcher
    • Scheduled Dispatcher
  • SMS Panel Message Templates (not available yet)

Searchsense

Description

A module suite providing extensible, configurable and fast typeahead ability for the core search. Also it might be used as an API.

Disclaimer

This module is in an early development stage, It is not intended to be used in production.

Installation

  • Enable the module as usual.
  • Goto admin/settings/search/autocomplete & configure your sense!

Develop a Searchsense Provider

  • If required, Alter Searchsense's administration form by implementing hook_form_searchsense_admin_alter().
  • If required, attach proper form validation and submission callbacks.
  • Implement hook_searchsense() and return a provider-id-keyed array of keyed suggestions, if you want to extend its suggestions.
  • Implement hook_searchsense_alter() if you're interested in modifying the suggestions.
  • Checkout submodules for code examples.

API usage example

<?php
/**
* Implements hook_searchsense().
*/
function nodesense_searchsense($a1 = '', $a2 = '', $limit = 10) {
$matches = array();

if ($a1 && ($query = variable_get('nodesense_query', FALSE))) {
$results = db_query_range($query, $a1, 0, (int) $limit);
while ($result = db_fetch_object($results)) {

Search Redirect

Description

Skips search results page & redirects user to a specific page under configurable circumstances.

Pages

Subscribe with RSS Subscribe to RSS - Actively maintained