function commerce_userpoints_theme in Commerce userpoints 7
Implements hook_theme(). cu_points is short of commerce_userpoints_points.
File
- ./
commerce_userpoints.module, line 142 - Hook implementations and API functions for the commerce_userpoints module.
Code
function commerce_userpoints_theme() {
return array(
'cu_points' => array(
'variables' => array(
$points = NULL,
),
),
);
}