function similarterms_admin_settings in Similar By Terms 5
Same name and namespace in other branches
- 6 similarterms.admin.inc \similarterms_admin_settings()
- 7 similarterms.admin.inc \similarterms_admin_settings()
Module settings page.
1 string reference to 'similarterms_admin_settings'
- similarterms_menu in ./
similarterms.module - Implementation of hook_menu().
File
- ./
similarterms.module, line 252 - Similar By Terms module displays a block with similar content based on taxonomy terms.
Code
function similarterms_admin_settings() {
$vocabularies_options = array(
'multi_select_and_tags' => 'Display multi-select and tags types only',
'all' => 'Display all vocabularies types',
);
$form['similarterms_vocabularies'] = array(
'#type' => 'radios',
'#title' => t('Vocabularies types to list'),
'#default_value' => variable_get("similarterms_vocabularies", 'multi_select_and_tags'),
'#options' => $vocabularies_options,
'#required' => FALSE,
);
$display_options = array(
'title_only' => 'Display titles only',
'teaser' => 'Display titles and teaser',
);
$form['similarterms_display_options'] = array(
'#type' => 'radios',
'#title' => t('Display Options'),
'#default_value' => variable_get('similarterms_display_options', 'title_only'),
'#options' => $display_options,
'#required' => FALSE,
'#prefix' => '<div>',
'#suffix' => '</div>',
);
$ncount_options = array(
'default' => t('Default sort order'),
'unique' => t('Prefer more unique order'),
);
$form['similarterms_ncount_options'] = array(
'#type' => 'radios',
'#title' => t('Unique Order Options'),
'#default_value' => variable_get('similarterms_ncount_options', 'default'),
'#options' => $ncount_options,
'#required' => FALSE,
'#prefix' => '<div>',
'#suffix' => '</div>',
);
$cache_options = drupal_map_assoc(array(
0,
300,
600,
900,
1800,
3600,
7200,
21600,
43200,
86400,
604800,
1209600,
2419200,
4838400,
9676800,
31536000,
), 'format_interval');
$cache_options[0] = t('Never');
$form['similarterms_cache_options'] = array(
'#type' => 'select',
'#title' => t('Cache Options'),
'#default_value' => variable_get('similarterms_cache_options', 3600),
'#options' => $cache_options,
'#required' => FALSE,
);
$form['similarterms_clear_cache'] = array(
'#type' => 'checkbox',
'#title' => t('Clear Cache'),
'#description' => t('Clear Similarterms Block Cache'),
);
// Get the weblinks categories to add to the blogroll
// $result = db_query('SELECT tid, name FROM {term_data} WHERE vid = %d ORDER BY weight, name', _weblinks_get_vocid());
// while ($row = db_fetch_object($result)) {
// Set which link categories get displayed on the links page
// $form[$row->tid]['weblinks_page_'. $row->tid] = array(
// '#type' => 'checkbox',
// '#title' => t($row->name),
// '#default_value' => variable_get('weblinks_page_'. $row->tid, 1),
// '#required' => FALSE,
// '#description' => t('Check to enable this category'),
// );
// }
$form['#submit']['similarterms_admin_settings_submit'] = array();
return system_settings_form($form);
}