function seotools_strongarm in Drupal SEO Tools 6
Same name and namespace in other branches
- 7 seotools.strongarm.inc \seotools_strongarm()
Implementation of hook_strongarm().
File
- ./
seotools.strongarm.inc, line 6
Code
function seotools_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 = 'googleanalytics_cache';
$strongarm->value = 1;
$export['googleanalytics_cache'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'googleanalytics_segmentation';
$strongarm->value = array(
'roles' => 'roles',
);
$export['googleanalytics_segmentation'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'googleanalytics_trackfiles';
$strongarm->value = 1;
$export['googleanalytics_trackfiles'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'googleanalytics_trackfiles_extensions';
$strongarm->value = '7z|aac|arc|arj|asf|asx|avi|bin|csv|doc|exe|flv|gif|gz|gzip|hqx|jar|jpe?g|js|mp(2|3|4|e?g)|mov(ie)?|msi|msp|pdf|phps|png|ppt|qtm?|ra(m|r)?|sea|sit|tar|tgz|torrent|txt|wav|wma|wmv|wpd|xls|xml|z|zip';
$export['googleanalytics_trackfiles_extensions'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'googleanalytics_trackmailto';
$strongarm->value = 1;
$export['googleanalytics_trackmailto'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'googleanalytics_trackoutgoing';
$strongarm->value = 1;
$export['googleanalytics_trackoutgoing'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'googleanalytics_visibility';
$strongarm->value = '0';
$export['googleanalytics_visibility'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'xmlsitemap_batch_limit';
$strongarm->value = '250';
$export['xmlsitemap_batch_limit'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'xmlsitemap_chunk_size';
$strongarm->value = 'auto';
$export['xmlsitemap_chunk_size'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'xmlsitemap_engines_engines';
$strongarm->value = array(
0 => 'ask',
1 => 'bing',
2 => 'google',
3 => 'moreover',
4 => 'yahoo',
);
$export['xmlsitemap_engines_engines'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'xmlsitemap_engines_minimum_lifetime';
$strongarm->value = '86400';
$export['xmlsitemap_engines_minimum_lifetime'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'xmlsitemap_frontpage_changefreq';
$strongarm->value = '86400';
$export['xmlsitemap_frontpage_changefreq'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'xmlsitemap_frontpage_priority';
$strongarm->value = '1.0';
$export['xmlsitemap_frontpage_priority'] = $strongarm;
$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 = '0';
$export['xmlsitemap_minimum_lifetime'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'xmlsitemap_prefetch_aliases';
$strongarm->value = 1;
$export['xmlsitemap_prefetch_aliases'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'xmlsitemap_xsl';
$strongarm->value = 1;
$export['xmlsitemap_xsl'] = $strongarm;
return $export;
}