You are here

function purl_test_purl_modifiers in Persistent URL 6

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

Implementation of hook_purl_modifiers().

1 call to purl_test_purl_modifiers()
purl_test_activate in tests/purl_test.module
PURL callback for test providers.

File

tests/purl_test.module, line 74

Code

function purl_test_purl_modifiers() {
  return array(
    'purl_test' => array(
      array(
        'value' => 'foo',
        'id' => 'foo',
      ),
      array(
        'value' => 'bar',
        'id' => 'bar',
      ),
      array(
        'value' => 'baz',
        'id' => 'baz',
      ),
    ),
    'purl_alt' => array(
      array(
        'value' => 'sweden',
        'id' => 'sweden',
      ),
      array(
        'value' => 'norway',
        'id' => 'norway',
      ),
      array(
        'value' => 'finland',
        'id' => 'finland',
      ),
    ),
  );
}