function site_map_admin_settings in Site map 5
Same name and namespace in other branches
- 6.2 site_map.admin.inc \site_map_admin_settings()
- 6 site_map.admin.inc \site_map_admin_settings()
Implementation of hook_settings().
1 string reference to 'site_map_admin_settings'
- site_map_menu in ./
site_map.module - Implementation of hook_menu().
File
- ./
site_map.module, line 30 - Original author: Nic Ivy Now maintained by by Fredrik Jonsson fredrik at combonet dot se
Code
function site_map_admin_settings() {
// Field to set site map message. Nifty language support from the catcha module,thanks.
if (module_exists('locale')) {
$langs = locale_supported_languages();
$form['site_map_message'] = array(
'#type' => 'fieldset',
'#title' => t('Site map message'),
'#description' => t('Define a message to be displayed above the site map.'),
);
foreach ($langs['name'] as $lang_code => $lang_name) {
$form['site_map_message']["site_map_message_{$lang_code}"] = array(
'#type' => 'textarea',
'#title' => t('For language %lang_name (code %lang_code)', array(
'%lang_name' => $lang_name,
'%lang_code' => $lang_code,
)),
'#default_value' => _sitemap_get_message($lang_code),
'#cols' => 60,
'#rows' => 5,
);
}
}
else {
$form['site_map_message'] = array(
'#type' => 'textarea',
'#title' => t('Site map message'),
'#default_value' => _sitemap_get_message(),
'#cols' => 60,
'#rows' => 5,
'#description' => t('Define a message to be displayed above the site map.'),
);
}
$form['site_map_content'] = array(
'#type' => 'fieldset',
'#title' => t('Site map content'),
);
$form['site_map_content']['site_map_show_front'] = array(
'#type' => 'checkbox',
'#title' => t('Show front page'),
'#return_value' => 1,
'#default_value' => variable_get('site_map_show_front', 1),
'#description' => t('When enabled, this option will include the front page in the site map.'),
);
$form['site_map_content']['site_map_show_blogs'] = array(
'#type' => 'checkbox',
'#title' => t('Show active blog authors'),
'#return_value' => 1,
'#default_value' => variable_get('site_map_show_blogs', 1),
'#description' => t('When enabled, this option will show the 10 most active blog authors.'),
);
$book_options = array();
if (module_exists('book')) {
$result = db_query(db_rewrite_sql('SELECT n.nid, n.title FROM {node} n INNER JOIN {book} b ON n.vid = b.vid WHERE b.parent = 0 ORDER BY b.weight, n.title'));
while ($row = db_fetch_object($result)) {
$book_options[$row->nid] = $row->title;
}
}
$form['site_map_content']['site_map_show_books'] = array(
'#type' => 'select',
'#title' => t('Books to include in the site map'),
'#default_value' => variable_get('site_map_show_books', array()),
'#options' => $book_options,
'#multiple' => TRUE,
'#description' => t('Ctrl-click (Windows) or Command-click (Mac) to select more than one value.'),
);
$menu_options = array();
$menu_options = menu_get_root_menus();
$form['site_map_content']['site_map_show_menus'] = array(
'#type' => 'select',
'#title' => t('Menus to include in the site map'),
'#default_value' => variable_get('site_map_show_menus', array()),
'#options' => $menu_options,
'#multiple' => TRUE,
'#description' => t('Ctrl-click (Windows) or Command-click (Mac) to select more than one value.'),
);
$form['site_map_content']['site_map_show_faq'] = array(
'#type' => 'checkbox',
'#title' => t('Show FAQ content'),
'#return_value' => 1,
'#default_value' => variable_get('site_map_show_faq', 1),
'#description' => t('When enabled, this option will include the content from the FAQ module in the site map.'),
);
$vocab_options = array();
if (module_exists('taxonomy')) {
foreach (taxonomy_get_vocabularies() as $vocabulary) {
$vocab_options[$vocabulary->vid] = $vocabulary->name;
}
}
$form['site_map_content']['site_map_show_vocabularies'] = array(
'#type' => 'select',
'#title' => t('Categories to include in the site map'),
'#default_value' => variable_get('site_map_show_vocabularies', array()),
'#options' => $vocab_options,
'#multiple' => TRUE,
'#description' => t('Ctrl-click (Windows) or Command-click (Mac) to select more than one value.'),
);
$form['site_map_content_options'] = array(
'#type' => 'fieldset',
'#title' => t('Categories settings'),
);
$form['site_map_content_options']['site_map_books_expanded'] = array(
'#type' => 'checkbox',
'#title' => t('Show books expanded'),
'#return_value' => 1,
'#default_value' => variable_get('site_map_books_expanded', 1),
'#description' => t('When enabled, this option will show all children pages for each book.'),
);
$form['site_map_content_options']['site_map_show_count'] = array(
'#type' => 'checkbox',
'#title' => t('Show node counts by categories'),
'#return_value' => 1,
'#default_value' => variable_get('site_map_show_count', 1),
'#description' => t('When enabled, this option will show the number of nodes in each taxonomy term.'),
);
$form['site_map_content_options']['site_map_categories_depth'] = array(
'#type' => 'textfield',
'#title' => t('Categories depth'),
'#default_value' => variable_get('site_map_categories_depth', 'all'),
'#size' => 3,
'#maxlength' => 10,
'#description' => t('Specify how many subcategories should be included on the categorie page. Enter "all" to include all subcategories,"0" to include no subcategories, or "-1" not to append the depth at all.'),
);
$form['site_map_rss_options'] = array(
'#type' => 'fieldset',
'#title' => t('RSS settings'),
);
$form['site_map_rss_options']['site_map_show_rss_links'] = array(
'#type' => 'checkbox',
'#title' => t('Include RSS links'),
'#return_value' => 1,
'#default_value' => variable_get('site_map_show_rss_links', 1),
'#description' => t('When enabled, this option will show links to the RSS feeds for each category and blog.'),
);
$form['site_map_rss_options']['site_map_rss_depth'] = array(
'#type' => 'textfield',
'#title' => t('RSS feed depth'),
'#default_value' => variable_get('site_map_rss_depth', 'all'),
'#size' => 3,
'#maxlength' => 10,
'#description' => t('Specify how many subcategories should be included in the RSS feed. Enter "all" to include all subcategories or "0" to include no subcategories.'),
);
return system_settings_form($form);
}