cms/drupal/modules/simpletest/tests/path_test.module
author ymh <ymh.work@gmail.com>
Fri, 08 Sep 2017 12:04:06 +0200
changeset 541 e756a8c72c3d
permissions -rw-r--r--
integrate drupal and correct build process. update version

<?php

/**
 * @file
 * Helper module for the path tests.
 */

/**
 * Resets the path test results.
 */
function path_test_reset() {
  variable_set('path_test_results', array());
}

/**
 * Implements hook_path_update().
 */
function path_test_path_update($path) {
  $results = variable_get('path_test_results', array());
  $results['hook_path_update'] = $path;
  variable_set('path_test_results', $results);
}