You are here

function test_requirements in Coder 8.2

Same name and namespace in other branches
  1. 8.3 tests/DrupalPractice/FunctionDefinitions/test.install \test_requirements()
  2. 8.3.x tests/DrupalPractice/FunctionDefinitions/test.install \test_requirements()

Implements hook_requirements().

File

coder_sniffer/DrupalPractice/Test/FunctionDefinitions/test.install, line 10
Install, update and uninstall functions for the Test module.

Code

function test_requirements() {

  // t() should not be used directly.
  $message = t('Message');
}