You are here

function poormanscron_robotstxt in Poormanscron 5.2

Same name and namespace in other branches
  1. 6.2 poormanscron.module \poormanscron_robotstxt()

Implements hook_robotstxt().

File

./poormanscron.module, line 37
A module which runs Drupal cron jobs without the cron application.

Code

function poormanscron_robotstxt() {
  return array(
    'Disallow: /poormanscron/',
    'Disallow: /?q=poormanscron/',
  );
}