You are here

function seochecklist_page_alter in SEO Checklist 7.3

Implementation of hook_page_alter().

File

./seochecklist.module, line 51
SEO Checklist module allows users to track important SEO techniques on the website.

Code

function seochecklist_page_alter(&$page) {
  if (variable_get('seo_checklist_link', 0)) {
    $page['page_bottom']['devel'] = array(
      '#type' => 'markup',
      '#markup' => '<div align="center"><a href="http://www.volacci.com/" target="_blank">Drupal SEO</a></div>',
    );
  }
}