popsu-d7/sites/all/modules/extlink/extlink.install
Bachir Soussi Chiadmi 1bc61b12ad first import
2015-04-08 11:40:19 +02:00

18 lines
409 B
Plaintext

<?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));
}