Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
9e8bfddf
Commit
9e8bfddf
authored
Jan 19, 2009
by
Angie Byron
Browse files
#360104
by drewish: Allow taxomomy module to be uninstalled.
parent
cd9794be
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/system/system.install
View file @
9e8bfddf
...
...
@@ -330,7 +330,7 @@ function system_install() {
}
// Create tables.
$modules
=
array
(
'system'
,
'filter'
,
'block'
,
'user'
,
'node'
,
'taxonomy'
);
$modules
=
array
(
'system'
,
'filter'
,
'block'
,
'user'
,
'node'
);
foreach
(
$modules
as
$module
)
{
drupal_install_schema
(
$module
);
}
...
...
modules/taxonomy/taxonomy.install
View file @
9e8bfddf
<?php
// $Id$
/**
* Implementation of hook_install().
*/
function
taxonomy_install
()
{
// Create tables.
drupal_install_schema
(
'taxonomy'
);
}
/**
* Implementation of hook_uninstall().
*/
function
taxonomy_uninstall
()
{
// Remove tables.
drupal_uninstall_schema
(
'taxonomy'
);
}
/**
* Implementation of hook_schema().
*/
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment