You are here

function theme_acquia_lift_goal_total in Acquia Lift Connector 7.2

Same name and namespace in other branches
  1. 7 theme/acquia_lift.theme.inc \theme_acquia_lift_goal_total()

Parameters

$variables: An associative array of variables including:

  • goal_total: The total goal value

Return value

the rendered output

File

theme/acquia_lift.theme.inc, line 205
acquia_lift.theme.inc Provides theme functions for Acquia Lift.

Code

function theme_acquia_lift_goal_total($variables) {
  $output = '<div class="acquia-lift-experiment-goal-total-wrapper">';
  $output .= t('Total possible goal value: ') . '<span class="acquia-lift-experiment-goal-total-value">' . $variables['goal_total'] . '</span>';
  $output .= '</div>';
  return $output;
}