You are here

function securepages_enable in Secure Pages 6

Same name and namespace in other branches
  1. 8 securepages.install \securepages_enable()
  2. 5 securepages.install \securepages_enable()
  3. 6.2 securepages.install \securepages_enable()
  4. 7 securepages.install \securepages_enable()

Implementation of hook_enable().

9 string references to 'securepages_enable'
SecurePagesTestCase::setUp in ./securepages.test
Generates a random database prefix, runs the install scripts on the prefixed database and enable the specified modules. After installation many caches are flushed and the internal browser is setup so that the page requests will run on the new prefix.…
SecurePagesTestCase::_testSettingsForm in ./securepages.test
Test submitting the settings form
securepages_boot in ./securepages.module
Implementation of hook_boot().
securepages_form_alter in ./securepages.module
Implementation of hook_form_alter().
securepages_init in ./securepages.module
Implementation of hook_init().

... See full list

File

./securepages.install, line 10
Provides installation details for Secure Pages

Code

function securepages_enable() {
  drupal_set_message(t('Secure pages needs to be enabled on !settings', array(
    '!settings' => l(t('admin/build/securepages'), 'admin/build/securepages'),
  )));
}