metatag_importer.admin.inc 338 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * @file
  4. * Starter page.
  5. */
  6. /**
  7. * Page callback to display the initial help page.
  8. */
  9. function metatag_importer_admin_page() {
  10. $output = array(
  11. '#type' => 'markup',
  12. '#markup' => t('Use the links above to import data from another module.'),
  13. '#prefix' => '<p>',
  14. '#suffix' => '<p>',
  15. );
  16. return $output;
  17. }