Considered feature-complete by its maintainers.

Ubercart Custom Price

uberbadge_3.gif

The initial idea of this module was to allow custom PHP code to be associated with a product in order to adjust the price of the product. The nature of allowing an admin to enter a block of PHP code to be executed though, allows for much more elaborate and potentially dangerous operations.

Upon installation, this module will add a Custom Code field to your products. Sample uses of this code block are:

$item->price = $item->price;

This will do nothing....but it goes in by default.
$item->price refers to the price before attribute adjustments.

$item->price = $item->price;
if ($item->qty > 5) {
  $item->price = [cost] * 1.1;
}

If more than 5 items are ordered, set the product price to a 10% mark-up of the product cost. Product tokens are exposed to this code so things like [cost], [sell_price], [weight], [weight-raw], etc. can be used.

$item->price = $item->price;
if (date('j', time()) == '1') {
  $item->price = $item->price/2;
}

Half price on the first of each month.

For additional examples which use attributes for price calculations, refer to the Attribute Tokens module.

Universally Unique IDentifier

This module provides an API for adding universally unique identifiers (UUID) to Drupal objects, most notably entities.

Features in Drupal 7 version

Automatic UUID generation

UUIDs will be generated for all core entities. An API is provided for other modules to enable support for custom entities.

UUID API for entities, properties and fields

With this unified API you can load entities with entity_uuid_load() so that all supported properties and fields are made with UUID references. You can also save entities formatted this way with entity_uuid_save() (depends on Entity API).

Export entities to use as default/demo content

The integration with Features module provides the ability to export UUID enabled entities with intact dependencies and references to other entities. This functionality depends on Deploy module 7.x-2.0-alpha1 (soon to be released) and is probably the most robust way for installation profiles and distributions to provide demo content!

Services integration

UC Discounts

This module will most likely be superseded by UC Discount. Please try that module instead.

UC PayPoint

Online Payments & Merchant Account Services – PayPoint.gif

The UC PayPoint module integrates PayPoint's payment services with Ubercart.

WhatCounts API

This module provides blocks and an admin management interface to integrate a Drupal site with the WhatCounts (http://whatcounts.com) Web API servi

Anonymous Publishing

Image of control panel.

The Anonymous Publishing module increases your control over anonymous
publishing on a site.

Allowing anonymous publishing may lower the threshold for authorship and entry to a site. Sites that deal with sensitive issues may want to provide their users with the ability to publish anonymously.

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only