function hosting_client_install in Hostmaster (Aegir) 6
Implementation of hook_install().
File
- modules/
hosting/ client/ hosting_client.install, line 83 - Install, update and uninstall for the clients module.
Code
function hosting_client_install() {
// Create tables.
drupal_install_schema('hosting_client');
$ret = array();
$ret[] = update_sql("INSERT INTO {hosting_client_user} (user, client) VALUES (1, 1)");
return $ret;
}