Maintainers monitor issues, but fast responses are not guaranteed.

Rowspan grouping

Row span grouping image

This module provide additional style plugin for Views.
It allows grouping by row and if the table has common values then plugin will merge cells.

Password Change Tab-Block

At present in user/uid/edit page we have the option to change the present password. This at times will be confusing to end user about what it might deal with.

commerce checkout page inc

index 73b82c6..1695847 100644 (file)
--- a/modules/checkout/includes/commerce_checkout.pages.inc
+++ b/modules/checkout/includes/commerce_checkout.pages.inc
@@ -182,6 +182,8 @@ function commerce_checkout_form($form, &$form_state, $order, $checkout_page) {
// submit handlers because we're using hook_forms() to use this form builder
// function and to avoid issues if other modules implement button level submit
// handlers on these or custom checkout buttons.
+ $button_operator = '' . t('or') . '';
+
if (!$checkout_page['prev_page'] && !empty($checkout_page['back_value'])) {
// Add an empty "Back" button value to avoid submission errors.
$form['buttons']['back'] = array(
@@ -198,7 +200,7 @@ function commerce_checkout_form($form, &$form_state, $order, $checkout_page) {
'#attributes' => array('class' => array('checkout-cancel')),
'#submit' => array('commerce_checkout_form_cancel_submit'),
'#limit_validation_errors' => array(),
- '#prefix' => t('or'),
+ '#prefix' => $button_operator,
);
}
elseif ($checkout_page['prev_page'] && !empty($checkout_page['back_value'])) {
@@ -208,7 +210,7 @@ function commerce_checkout_form($form, &$form_state, $order, $checkout_page) {
'#attributes' => array('class' => array('checkout-back')),

Webform Transformer

This module adds a new webform component that transforms user input based on a self defined pattern.

Entity Reference Calc

What is this?

This module provides an easy way for an entity to calculate the average/sum/min/max of a field on other entities that are currently referencing it through a Entity Reference field.

This module is heavily based upon the Entity Reference Count module. Even this project page description is heavily based on that module.

How it works

This Entity Reference Calc is in-and-of itself, just another field type (called "entityreference_calc" in the code) that may be attached to any Drupal entity. The field can be configured to select which referencing entity types and fields you want to do the calculation on.

The calculation field is automatically re-calculated when the referencing or referenced entity get inserted, updated or deleted. The Entity Reference Calcs's numeric field value may be enabled, displayed and manipulated via view modes, through the "Manage Fields" interface provided by Drupal core's Field UI, and has built-in Views integration.

Installation

  • Copy entityreference_calc to your module directory and then enable on the admin modules page.

Views UI Tabs

Provides a views style plugin to display views results in jQuery UI Tabs.

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained