Same filename and directory in other branches
  1. 8.9.x core/profiles/testing_requirements/testing_requirements.install
  2. 9 core/profiles/testing_requirements/testing_requirements.install

Install hooks for test profile.

File

core/profiles/testing_requirements/testing_requirements.install
View source
<?php

/**
 * @file
 * Install hooks for test profile.
 */

/**
 * Implements hook_requirements().
 */
function testing_requirements_requirements($phase) {
  $requirements = [];
  if ($phase === 'install') {
    $requirements['testing_requirements'] = [
      'title' => t('Testing requirements'),
      'severity' => REQUIREMENT_ERROR,
      'description' => t('Testing requirements failed requirements.'),
    ];
  }
  return $requirements;
}

Functions