cms/drupal/modules/simpletest/tests/system_test.install
author ymh <ymh.work@gmail.com>
Mon, 16 Oct 2017 15:18:53 +0200
changeset 551 e70004b11b3b
parent 541 e756a8c72c3d
permissions -rw-r--r--
Remove viaf link on name. correct #0027355

<?php

/**
 * @file
 * Install, update and uninstall functions for the system_test module.
 */

/**
 * Implements hook_schema().
 */
function system_test_schema() {
  // Trigger a search for a module in the filesystem when requested by
  // system_test_drupal_get_filename_with_schema_rebuild().
  if (variable_get('system_test_drupal_get_filename_attempt_recursive_rebuild')) {
    $module_name = variable_get('system_test_drupal_get_filename_test_module_name');
    drupal_get_filename('module', $module_name);
  }

  return array();
}