Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
318436d1
Commit
318436d1
authored
15 years ago
by
Dries Buytaert
Browse files
Options
Downloads
Patches
Plain Diff
- Patch
#619904
by nenne: fixed forum.module doesn't uninstall cleanly.
parent
c2f26d33
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!7452
Issue #1797438. HTML5 validation is preventing form submit and not fully...
,
!789
Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
modules/forum/forum.install
+4
-6
4 additions, 6 deletions
modules/forum/forum.install
with
4 additions
and
6 deletions
modules/forum/forum.install
+
4
−
6
View file @
318436d1
...
...
@@ -21,11 +21,14 @@ function forum_install() {
}
function
forum_enable
()
{
// Get info on the field "taxonomy_forums".
$field_check
=
field_info_field
(
"taxonomy_forums"
);
if
(
$vocabulary
=
taxonomy_vocabulary_load
(
variable_get
(
'forum_nav_vocabulary'
,
0
)))
{
// Save the vocabulary to create the default field instance.
taxonomy_vocabulary_save
(
$vocabulary
);
}
else
{
// Create fields if info on "taxonomy_forums" field turns out empty.
elseif
(
empty
(
$field_check
))
{
// Create the forum vocabulary if it does not exist. Assign the vocabulary
// a low weight so it will appear first in forum topic create and edit
// forms.
...
...
@@ -63,12 +66,7 @@ function forum_uninstall() {
// Load the dependent Taxonomy module, in case it has been disabled.
drupal_load
(
'module'
,
'taxonomy'
);
// Delete the vocabulary.
$vid
=
variable_get
(
'forum_nav_vocabulary'
,
0
);
taxonomy_vocabulary_delete
(
$vid
);
variable_del
(
'forum_containers'
);
variable_del
(
'forum_nav_vocabulary'
);
variable_del
(
'forum_hot_topic'
);
variable_del
(
'forum_per_page'
);
variable_del
(
'forum_order'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment