<?php
Tiffany Starfish
function YOURMODULE_uc_price_handler() {
return array(
'alter' => array(
'title' => t('My super price handler')
Tiffany Co,
'description' => t('Handles unique prices for user 32.')
Tiffany Diamond Earrings,
'callback' => 'YOURMODULE_price_alterer'
Tiffany Bracelets,
)
Tiffany Necklace,
);
}
function YOURMODULE_price_alterer(&$price_info
Sterling Silver Charm, $context
Tiffany Necklace, $options = array()){
global $user;
// if user id is 32...
// modify the price
if ($user->uid == 32) { // modify this line to your needs
Pandora Charms!
if ($context["subject"]["node"]->field_p_unique_price[0]['value']) {
$price_info["price"] = $context["subject"]["node"]->field_p_unique_price[0]['value'];
}
}
}
?>