clients_feeds.install in Web Service Clients 6
Same filename and directory in other branches
@author Django Beatty - adub Install, update and uninstall functions for the Clients module.
File
clients/clients_feeds/clients_feeds.installView source
<?php
/**
* @file
* @author Django Beatty - adub
* Install, update and uninstall functions for the Clients module.
*/
/**
* Implementation of hook_install().
*/
function clients_feeds_install() {
}
/**
* Implementation of hook_uninstall().
*/
function clients_feeds_uninstall() {
// clean up any variables created by module
$module_variables = array();
foreach ($module_variables as $module_variable) {
variable_del($module_variables);
}
}
Functions
Name | Description |
---|---|
clients_feeds_install | Implementation of hook_install(). |
clients_feeds_uninstall | Implementation of hook_uninstall(). |