#28625, Forum vocabulary does not handle standard vocabulary features correctly, removed these features by means of formapi, patch by profix898, with some love by dopry and chx

4.7.x
Gerhard Killesreiter 2006-03-31 06:43:46 +00:00
parent b22d877ff8
commit 603a6618ee
2 changed files with 48 additions and 0 deletions

View File

@ -202,6 +202,30 @@ function forum_admin_configure() {
return system_settings_form('forum_admin_configure', $form);
}
/**
* Implementation of hook_form_alter().
*/
function forum_form_alter($form_id, &$form) {
// hide critical options from forum vocabulary
if ($form_id == 'taxonomy_form_vocabulary') {
if ($form['vid']['#value'] == _forum_get_vid()) {
$form['help_forum_vocab'] = array(
'#value' => t('This is the designated forum vocabulary. Some of the normal vocabulary options have been removed.'),
'#weight' => -1,
);
$form['nodes']['forum'] = array('#type' => 'checkbox', '#value' => 1, '#title' => t('forum topic'), '#attributes' => array('disabled' => '' ), '#description' => t('forum topic is affixed to the forum vocabulary.'));
$form['hierarchy'] = array('#type' => 'value', '#value' => 1);
unset($form['relations']);
unset($form['tags']);
unset($form['multiple']);
$form['required'] = array('#type' => 'value', '#value' => 1);
}
else {
unset($form['nodes']['forum']);
}
}
}
/**
* Implementation of hook_load().
*/

View File

@ -202,6 +202,30 @@ function forum_admin_configure() {
return system_settings_form('forum_admin_configure', $form);
}
/**
* Implementation of hook_form_alter().
*/
function forum_form_alter($form_id, &$form) {
// hide critical options from forum vocabulary
if ($form_id == 'taxonomy_form_vocabulary') {
if ($form['vid']['#value'] == _forum_get_vid()) {
$form['help_forum_vocab'] = array(
'#value' => t('This is the designated forum vocabulary. Some of the normal vocabulary options have been removed.'),
'#weight' => -1,
);
$form['nodes']['forum'] = array('#type' => 'checkbox', '#value' => 1, '#title' => t('forum topic'), '#attributes' => array('disabled' => '' ), '#description' => t('forum topic is affixed to the forum vocabulary.'));
$form['hierarchy'] = array('#type' => 'value', '#value' => 1);
unset($form['relations']);
unset($form['tags']);
unset($form['multiple']);
$form['required'] = array('#type' => 'value', '#value' => 1);
}
else {
unset($form['nodes']['forum']);
}
}
}
/**
* Implementation of hook_load().
*/