You are here

function theme_acquia_lift_edit_mode_personalize_in_context_links in Acquia Lift Connector 7.2

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

Theme function for the in-context personalization controls.

File

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

Code

function theme_acquia_lift_edit_mode_personalize_in_context_links($variables) {
  $elements = $variables['elements'];
  $launch = drupal_render($elements['launch']);
  $cancel = drupal_render($elements['cancel']);
  return '<div' . drupal_attributes($elements['#attributes']) . '>' . $launch . ' ' . t('or') . ' ' . $cancel . '</div>';
}