rrssb.install in Ridiculously Responsive Social Sharing Buttons 7.2
Same filename and directory in other branches
Contains install and update functions.
File
rrssb.installView source
<?php
/**
* @file
* Contains install and update functions.
*/
/**
* Update to background images for buttons.
*/
function rrssb_update_7201() {
rrssb_flush_caches();
}
/**
* Implements hook_uninstall().
*/
function rrssb_uninstall() {
// Remove auto-generated files.
file_unmanaged_delete_recursive('public://rrssb');
// Simple DB query to get the names of our variables.
$results = db_select('variable', 'v')
->fields('v', array(
'name',
))
->condition('name', 'rrssb_%', 'LIKE')
->execute();
// Loop through and delete each of our variables.
foreach ($results as $result) {
variable_del($result->name);
}
}
Functions
Name | Description |
---|---|
rrssb_uninstall | Implements hook_uninstall(). |
rrssb_update_7201 | Update to background images for buttons. |