FINAL suepr merge step : added all modules to this super repos
This commit is contained in:
17
sites/all/modules/contrib/theming/extlink/extlink.install
Normal file
17
sites/all/modules/contrib/theming/extlink/extlink.install
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* Implementation of hook_install().
|
||||
*/
|
||||
function extlink_install() {
|
||||
// Weight needs to be 1 for compatibility with SpamSpan.
|
||||
db_query("UPDATE {system} SET weight = 1 WHERE name = 'extlink'");
|
||||
}
|
||||
|
||||
/**
|
||||
* Implementation of hook_uninstall().
|
||||
*/
|
||||
function extlink_uninstall() {
|
||||
db_query("DELETE FROM {variable} WHERE name LIKE 'extlink_%'");
|
||||
cache()->deleteTags(array('variables' => TRUE));
|
||||
}
|
Reference in New Issue
Block a user