content_type_overview.install in Content type overview 6
Same filename and directory in other branches
File
content_type_overview.installView source
<?php
/**
* Implementation of hook_install().
*/
function content_type_overview_install() {
db_query("UPDATE {system} SET weight = 99 WHERE name = 'content_type_overview'");
}
/**
* Implementation of hook_uninstall().
*/
function content_type_overview_uninstall() {
variable_del('content_type_overview_types');
variable_del('content_type_overview_shorten_labels');
}
/**
* Implementation of hook_update_N().
*/
function content_type_overview_update_6100() {
$ret = array();
$ret[] = update_sql("UPDATE {system} SET weight = 99 WHERE name = 'content_type_overview'");
return $ret;
}
Functions
Name![]() |
Description |
---|---|
content_type_overview_install | Implementation of hook_install(). |
content_type_overview_uninstall | Implementation of hook_uninstall(). |
content_type_overview_update_6100 | Implementation of hook_update_N(). |