function seotools_page_title_nodes_reset in Drupal SEO Tools 6
File
- plugins/
seotools.presets.inc, line 268
Code
function seotools_page_title_nodes_reset() {
$types = node_get_types();
foreach ($types as $type) {
// Define the node-type key
$key = 'page_title_type_' . $type->type . '_showfield';
variable_set($key, 1);
}
}