You are here

function acquia_agent_an_info_header in Acquia Connector 6.2

Same name and namespace in other branches
  1. 6 acquia_agent/acquia_agent.pages.inc \acquia_agent_an_info_header()
  2. 7.3 acquia_agent/acquia_agent.pages.inc \acquia_agent_an_info_header()
  3. 7 acquia_agent/acquia_agent.pages.inc \acquia_agent_an_info_header()
  4. 7.2 acquia_agent/acquia_agent.pages.inc \acquia_agent_an_info_header()
1 call to acquia_agent_an_info_header()
acquia_agent_an_start_form in acquia_agent/acquia_agent.pages.inc
Main free subscription form function

File

acquia_agent/acquia_agent.pages.inc, line 698
Acquia Agent configuration page.

Code

function acquia_agent_an_info_header() {
  $path = drupal_get_path('module', 'acquia_agent');
  $l_opt = array(
    'attributes' => array(
      'target' => '_blank',
    ),
  );
  $output = '<div class="an-wrapper">';
  $output .= '<h2 id="an-info-header">' . t('Acquia Subscription', array(
    '@acquia-network' => 'http://acquia.com/products-services/acquia-network',
  )) . '</h2>';
  $output .= '<p class="an-slogan">' . t('A suite of products and services to create & maintain killer web experiences built on Drupal') . '</p>';
  $output .= '<div id="an-info-box">';
  $output .= '<div class="cell with-arrow an-left">';
  $output .= '<h2 class="cell-title"><i>' . t('Answers you need') . '</i></h2>';
  $output .= '<a href="http://library.acquia.com/" target="_blank">' . theme('image', $path . '/images/icon-library.png') . '</a>';
  $output .= '<p class="cell-p">' . t("Tap the collective knowledge of Acquia’s technical support team & partners.") . '</p>';
  $output .= '</div>';
  $output .= '<div class="cell with-arrow an-center">';
  $output .= '<h2 class="cell-title"><i>' . t('Tools to extend your site') . '</i></h2>';
  $output .= '<a href="http://www.acquia.com/products-services/acquia-network/cloud-services" target="_blank">' . theme('image', $path . '/images/icon-tools.png') . '</a>';
  $output .= '<p class="cell-p">' . t('Enhance and extend your site with an array of <a href="@services" target="_blank">services</a> from Acquia & our partners.', array(
    '@services' => 'http://www.acquia.com/products-services/acquia-network/cloud-services',
  )) . '</p>';
  $output .= '</div>';
  $output .= '<div class="cell an-right">';
  $output .= '<h2 class="cell-title"><i>' . t('Support when you want it') . '</i></h2>';
  $output .= '<a href="http://www.acquia.com/drupal-support" target="_blank">' . theme('image', $path . '/images/icon-support.png') . '</a>';
  $output .= '<p class="cell-p">' . t("Experienced Drupalists are available to support you whenever you need it.") . '</p>';
  $output .= '</div>';
  $output .= '</div>';
  $output .= '</div>';
  return $output;
}