You are here

function seo_checklist_page_alter in SEO Checklist 7.4

Implements hook_page_alter().

File

./seo_checklist.module, line 544
Track important SEO techniques on the website.

Code

function seo_checklist_page_alter(&$page) {
  if (_seo_checklist_volacci_link_is_enabled()) {
    $page['page_bottom']['seo_checklist_volacci_link'] = array(
      '#type' => 'markup',
      '#markup' => '<div id="seo-checklist-volacci-link"><a href="http://www.volacci.com/contact?utm_source=seo_checklist&amp;utm_medium=footer&amp;utm_campaign=volacci_seo">Drupal SEO</a></div>',
    );
  }
}