You are here

function seo_strongarm in Drupal SEO Essentials 7

Implements hook_strongarm().

File

./seo.strongarm.inc, line 10
seotools.strongarm.inc

Code

function seo_strongarm() {
  $export = array();
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'xmlsitemap_minimum_lifetime';
  $strongarm->value = '86400';
  $export['xmlsitemap_minimum_lifetime'] = $strongarm;
  return $export;
}