function _seotools_presets in Drupal SEO Tools 6
1 call to _seotools_presets()
- seotools_presets in ./
seotools.module - Implementation of hook_presets().
File
- plugins/
seotools.presets.inc, line 3
Code
function _seotools_presets() {
return array(
'seotools' => array(
'title' => 'SEO Tools',
'version' => 1,
'description' => 'Presets for SEO optimization',
'file' => 'plugins/seotools.presets.inc',
'modules_footer' => t('!seotools created by !levelten', array(
'!seotools' => l('SEO Tools', 'http://www.leveltendesign.com/seo-tools'),
'!levelten' => l('LevelTen Interactive', 'http://www.leveltendesign.com'),
)),
'modules' => array(
'seotools' => array(
'name' => 'SEO Tools',
'footer' => 'To change the settings, go to ' . l('admin/settings/seotools', 'admin/settings/seotools'),
'settings' => array(
'seotools_feature',
),
),
'tutorials' => array(
'name' => 'Tutorials',
),
'path' => array(
'name' => 'Path (Core)',
),
'pathauto' => array(
'name' => 'Pathauto',
),
'taxonomy' => array(
'name' => 'Taxonomy (Core)',
),
'token' => array(
'name' => 'Token',
),
'features' => array(
'name' => 'Features',
),
'strongarm' => array(
'name' => 'Strongarm',
),
'googleanalytics' => array(
'project' => 'google_analytics',
'name' => 'Google Analytics',
'version' => '6.x-3.3',
'settings' => array(
'googleanalytics_account',
),
'footer' => 'To change the settings, go to ' . l('admin/settings/googleanalytics', 'admin/settings/googleanalytics'),
),
'google_analytics_reports' => array(
'name' => 'Google Analytics Reports',
'version' => '6.x-1.0',
'submodules' => array(
'google_analytics_api',
),
'settings' => array(
'profile_id',
),
'footer' => 'To change the settings, go to ' . l('admin/settings/google-analytics-reports', 'admin/settings/google-analytics-reports'),
),
'chart' => array(
'name' => 'Chart',
'version' => '6.x-1.3',
'submodules' => array(
'system_charts',
),
),
'countries_api' => array(
'name' => 'Countries API',
'version' => '6.x-1.1',
),
'seo_friend' => array(
'name' => 'SEO Friend',
'version' => '6.x-1.1',
),
'wordstream' => array(
'name' => 'Wordstream',
'version' => '6.x-1.0-beta3',
'footer' => 'To change the settings, go to ' . l('admin/settings/wordstream', 'admin/settings/wordstream'),
'settings' => array(
'wordstream_username',
'wordstream_free_embed_id',
),
),
'nodewords' => array(
'name' => 'Node Words',
'version' => '6.x-1.11',
'submodules' => array(
'nodewords_extra',
'nodewords_verification_tags',
'nodewords_basic',
),
),
'page_title' => array(
'name' => 'Page Title',
'version' => '6.x-2.5',
'settings' => array(
'nodes',
),
'footer' => 'To change the settings, go to ' . l('admin/content/page_title', 'admin/content/page_title'),
),
'globalredirect' => array(
'name' => 'Global Redirect',
'version' => '6.x-1.2',
),
'path_redirect' => array(
'name' => 'Path Redirect',
'version' => '6.x-1.0-rc2',
),
'xmlsitemap' => array(
'name' => 'XML Sitemap',
'version' => '6.x-2.0-beta3',
'submodules' => array(
'xmlsitemap_custom',
'xmlsitemap_node',
'xmlsitemap_engines',
'xmlsitemap_user',
'xmlsitemap_menu',
'xmlsitemap_taxonomy',
),
'settings' => array(
'vocabularies',
'content_types',
'menus',
),
'footer' => 'To change the settings, go to ' . l('admin/settings/xmlsitemap', 'admin/settings/xmlsitemap'),
),
'contentanalysis' => array(
'name' => 'Content Analysis',
'version' => '6.x-1.6',
),
'contentoptimizer' => array(
'name' => 'Content Optimizer',
'version' => '6.x-2.2',
),
'alchemy' => array(
'name' => 'Alchemy',
'version' => '6.x-1.0-rc6',
'submodules' => array(
'alchemy_contentanalysis',
),
'settings' => array(
'alchemy_apikey',
),
'footer' => 'To change the settings, go to ' . l('admin/settings/alchemy', 'admin/settings/alchemy'),
),
'kwresearch' => array(
'name' => 'Keyword Research',
'version' => '6.x-1.0-rc9',
'submodules' => array(
'kwresearch_google',
),
'settings' => array(
'kwresearch_apikey',
'kwresearch_keyword_sync_vocabulary',
),
'footer' => 'To change the settings, go to ' . l('admin/settings/kwresearch', 'admin/settings/kwresearch'),
),
//'w3c_validator' => array(
// 'name' => 'W3C Validator',
// 'version' => '6.x-1.2',
//),
'linkintel' => array(
'name' => 'Link Intelligence',
'version' => '6.x-1.0-rc11',
'submodules' => array(
'linkintel_cck',
'linkintel_stemmer',
),
'settings' => array(
'request_sync_tax_vocabs',
'suggestions_seed_vocabs',
),
'footer' => 'To change the settings, go to ' . l('admin/settings/linkintel', 'admin/settings/linkintel'),
),
),
),
);
}