drupal_uninstall_schema

  1. drupal
    1. drupal6
    2. drupal7
Versionen
drupal6 – drupal7 drupal_uninstall_schema($module)

Remove all tables that a module defines in its hook_schema().

Note: This function does not pass the module's schema through hook_schema_alter(). The module's tables will be created exactly as the module defines them.

Übergabeparameter

$module The module for which the tables will be removed.

Rückgabewert

An array of arrays with the following key/value pairs:

  • success: a boolean indicating whether the query succeeded.
  • query: the SQL query(s) executed, passed through check_plain().

Verwandte Themen

▾ 24 functions call drupal_uninstall_schema()

aggregator_uninstall in modules/aggregator/aggregator.install
Implementation of hook_uninstall().
block_uninstall in modules/block/block.install
Implementation of hook_uninstall().
blogapi_uninstall in modules/blogapi/blogapi.install
Implementation of hook_uninstall().
book_uninstall in modules/book/book.install
Implementation of hook_uninstall().
comment_uninstall in modules/comment/comment.install
Implementation of hook_uninstall().
contact_uninstall in modules/contact/contact.install
Implementation of hook_uninstall().
database_test_uninstall in modules/simpletest/tests/database_test.install
Implementation of hook_uninstall().
dblog_uninstall in modules/dblog/dblog.install
Implementation of hook_uninstall().
field_sql_storage_uninstall in modules/field/modules/field_sql_storage/field_sql_storage.install
Implementation of hook_uninstall().
field_test_uninstall in modules/simpletest/tests/field_test.install
Implementation of hook_uninstall().
hook_uninstall in modules/system/system.api.php
Remove any information that the module sets.
locale_uninstall in modules/locale/locale.install
Implementation of hook_uninstall().
menu_uninstall in modules/menu/menu.install
Implementation of hook_uninstall().
openid_uninstall in modules/openid/openid.install
Implementation of hook_uninstall().
poll_uninstall in modules/poll/poll.install
Implementation of hook_uninstall().
profile_uninstall in modules/profile/profile.install
Implementation of hook_uninstall().
search_uninstall in modules/search/search.install
Implementation of hook_uninstall().
simpletest_uninstall in modules/simpletest/simpletest.install
Implementation of hook_uninstall().
statistics_uninstall in modules/statistics/statistics.install
Implementation of hook_uninstall().
taxonomy_test_uninstall in modules/simpletest/tests/taxonomy_test.install
Implementation of hook_uninstall().
taxonomy_uninstall in modules/taxonomy/taxonomy.install
Implementation of hook_uninstall().
trigger_uninstall in modules/trigger/trigger.install
Implementation of hook_uninstall().
update_uninstall in modules/update/update.install
Implementation of hook_uninstall().
upload_uninstall in modules/upload/upload.install
Implementation of hook_uninstall().

Code

includes/common.inc, line 4069

<?php
function drupal_uninstall_schema($module) {
  $schema = drupal_get_schema_unprocessed($module);
  _drupal_initialize_schema($module, $schema);

  $ret = array();
  foreach ($schema as $table) {
    if (db_table_exists($table['name'])) {
      db_drop_table($ret, $table['name']);
    }
  }
  return $ret;
}
?>

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen