function WorkspacesRequirements::getRequirements

Overrides InstallRequirementsInterface::getRequirements

File

core/modules/workspaces/src/Install/Requirements/WorkspacesRequirements.php, line 17

Class

WorkspacesRequirements
Install time requirements for the workspaces module.

Namespace

Drupal\workspaces\Install\Requirements

Code

public static function getRequirements() : array {
    $requirements = [];
    if (\Drupal::moduleHandler()->moduleExists('workspace')) {
        $requirements['workspace_incompatibility'] = [
            'severity' => REQUIREMENT_ERROR,
            'description' => t('Workspaces can not be installed when the contributed Workspace module is also installed. See the <a href=":link">upgrade path</a> page for more information on how to upgrade.', [
                ':link' => 'https://www.drupal.org/node/2987783',
            ]),
        ];
    }
    return $requirements;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.