You are here

function auth0_missing_dependencies_message in Auth0 Single Sign On 7.2

Set a message explaining how to install the dependencies.

2 calls to auth0_missing_dependencies_message()
auth0_advanced_settings_form in ./auth0.module
The Auth0 advanced configuration settings form callback.
auth0_basic_settings_form in ./auth0.module
The Auth0 basic configuration settings form callback.

File

./auth0.module, line 1125

Code

function auth0_missing_dependencies_message() {
  drupal_set_message(t('Auth0 is not fully installed. See the module\'s INSTALL.txt file for installation instructions.', array(
    '!url' => 'https://www.drupal.org/project/composer_manager',
  )), 'warning');
}