You are here

function simplesamlphp_auth_entity_extra_field_info in simpleSAMLphp Authentication 8.3

Implements hook_entity_extra_field_info().

File

./simplesamlphp_auth.module, line 82
SimpleSAMLphp authentication module for Drupal.

Code

function simplesamlphp_auth_entity_extra_field_info() {
  $fields = [];
  $fields['user']['user']['form']['simplesamlphp_auth_user_enable'] = [
    'label' => t('SAML authentication settings'),
    'description' => '',
    'weight' => 0,
    'visible' => TRUE,
  ];
  return $fields;
}