Considered feature-complete by its maintainers.

Block edit

block_edit.jpg

The Block edit module provides inline (on mouseover) editing capability for any block or node.

Configure block/menu/node settings directly by clicking a Views' style link above the block/node.

Where appropriate you are returned to the originating page so it provides a very simplified and intuitive workflow.

A full list of links and options provided by this module are listed below.

Links:

Blocks

  • Configure - Configure the settings for the block.
  • Edit menu - Edit the title and description of the menu.
  • List links - Edit the links in the menu.
  • Edit node - Edit the node generated by nodeblock module.
  • Edit menu - Edit the links in the menu for menu_block and nice_menus menus.

Nodes

  • View - View the node.
  • Edit - Edit the node.
  • Delete - Delete the node.
  • Clone - Clone the node using node_clone module.
  • Dev load - Display devel load using devel module.
  • Dev render - Display devel render using devel module.
  • Edit type - Edit the content type using CCK module.

UC Worldpay

About

This module integrates WorlPay's redirection payment service with Ubercart to allow your users to pay via credit card.

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.

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only