You are here

readability.install in Readability Analyzer 6

File

readability.install
View source
<?php

/**
 *  Implementation of hook_install().
 */
function readability_install() {
  drupal_set_message(t('Readability has been installed.'));
}

/**
 * Implementation of hook_uninstall().
 */
function readability_uninstall() {
  drupal_set_message(t('Readability has been uninstalled.'));
}

Functions

Namesort descending Description
readability_install Implementation of hook_install().
readability_uninstall Implementation of hook_uninstall().