You are here

function commons_connect_commons_core_info_block in Drupal Commons 6.2

File

themes/commons_connect/template.php, line 253

Code

function commons_connect_commons_core_info_block() {
  $content = '';
  $content .= '<div id="acquia-footer-message">';
  $content .= '<a href="http://acquia.com/drupalcommons" title="' . t('Commons social business software') . '">';
  $content .= theme('image', 'profiles/drupal_commons/images/commons_droplet.png', t('Commons social business software'), t('Commons social business software'));
  $content .= '</a>';
  $content .= '<span>';
  $content .= t('A !dc Community, powered by', array(
    '!dc' => l(t('Commons'), 'http://acquia.com/drupalcommons', array(
      'attributes' => array(
        'title' => t('A Commons social business software'),
      ),
    )),
  )) . '&nbsp;';
  $content .= l(t('Acquia'), 'http://acquia.com', array(
    'attributes' => array(
      'title' => t('Acquia'),
    ),
  ));
  $content .= '</span>';
  $content .= '</div>';
  $content .= '<div id="fusion-footer-message">';
  $content .= t('Theme by') . '&nbsp;';
  $content .= '<a href="http://www.brightlemon.com" title="' . t('Drupal Themes by BrightLemon') . '">' . t('BrightLemon') . '</a>';
  $content .= ', ' . t('powered by') . '&nbsp;';
  $content .= '<a href="http://fusiondrupalthemes.com" title="' . t('Premium Drupal themes powered by Fusion') . '">' . t('Fusion') . '</a>.';
  $content .= '</div>';
  return $content;
}