You are here

function quote_install in Quote 6.2

Same name and namespace in other branches
  1. 5 quote.install \quote_install()
  2. 6 quote.install \quote_install()
  3. 7 quote.install \quote_install()

Implementation of hook_install().

File

./quote.install, line 8

Code

function quote_install() {
  $ret = array();
  drupal_set_message(t('The quote module has been installed successfully.'));
  return $ret;
}