Skip to content
Snippets Groups Projects
og_sm.install 290 B
Newer Older
<?php
/**
 * @file
 * Install, Uninstall & updates for og_sites.
 */

/**
 * Implements hook_install().
 */
function og_sm_install() {
  variable_set('og_sm_node_types', array());
}

/**
 * Implements hook_uninstall().
 */
function og_sm_uninstall() {
  variable_del('og_sm_node_types');
}