You are here

function purl_test_activate in Persistent URL 6

Same name and namespace in other branches
  1. 7 tests/purl_test.module \purl_test_activate()

PURL callback for test providers.

1 string reference to 'purl_test_activate'
purl_test_purl_provider in tests/purl_test.module
Implementation of hook_purl_provider().

File

tests/purl_test.module, line 66

Code

function purl_test_activate($value) {
  $modifiers = purl_test_purl_modifiers();
  drupal_set_message(t('PURL test ID: @id', array(
    '@id' => $value,
  )));
}