You are here

rss_permissions.install in RSS Permissions 7

Same filename and directory in other branches
  1. 6 rss_permissions.install

File

rss_permissions.install
View source
<?php

/*
 * @file
 * Install, update and uninstall functions for the RSS permissions module.
 */

/**
 * Implementation of hook_install().
 */
function rss_permissions_install() {
  variable_set('rss_permissions_feed_icon_theme', 'theme_feed_icon');
  variable_set('rss_permissions_disable_all', FALSE);
}

/**
 * Implementation of hook_uninstall().
 */
function rss_permissions_uninstall() {
  variable_del('rss_permissions_feed_icon_theme');
  variable_del('rss_permissions_disable_all');
}

Functions

Namesort descending Description
rss_permissions_install Implementation of hook_install().
rss_permissions_uninstall Implementation of hook_uninstall().