You are here

uc_usps.theme.inc in Ubercart 7.3

Same filename and directory in other branches
  1. 8.4 shipping/uc_usps/uc_usps.theme.inc

Theme functions for the uc_usps module.

File

shipping/uc_usps/uc_usps.theme.inc
View source
<?php

/**
 * @file
 * Theme functions for the uc_usps module.
 */

/**
 * Theme function to format the USPS service name and rate amount line-item
 * shown to the customer.
 *
 * @param $variables
 *   Associative array containing information needed to theme a quote.
 *   Contains two keys:
 *   - service: The USPS service name.
 *   - packages: Package information.
 *
 * @ingroup themeable
 */
function theme_uc_usps_option_label($variables) {
  $service = $variables['service'];
  $packages = $variables['packages'];

  // Start with USPS logo.
  $output = theme('image', array(
    'path' => drupal_get_path('module', 'uc_usps') . '/uc_usps_logo.gif',
    'alt' => t('U.S.P.S.'),
    'attributes' => array(
      'class' => 'usps-logo',
    ),
  ));

  // Add USPS service name, removing any 'U.S.P.S.' prefix.
  $output .= preg_replace('/^U\\.S\\.P\\.S\\./', '', $service);

  // Add package information
  $output .= ' (' . format_plural(count($packages), '1 package', '@count packages') . ')';
  return $output;
}

Functions

Namesort descending Description
theme_uc_usps_option_label Theme function to format the USPS service name and rate amount line-item shown to the customer.