Files
iTop/datamodels/2.x/authent-local/module.authent-local.php
Pierre Goiffon e14845728c Prepare 2.7.7
2022-02-01 15:19:10 +01:00

45 lines
828 B
PHP
Executable File

<?php
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'authent-local/2.7.7',
array(
// Identification
//
'label' => 'User authentication based on the local DB',
'category' => 'authentication',
// Setup
//
'dependencies' => array(
),
'mandatory' => true,
'visible' => true,
// Components
//
'datamodel' => array(
'model.authent-local.php',
),
'data.struct' => array(
//'data.struct.authent-local.xml',
),
'data.sample' => array(
//'data.sample.authent-local.xml',
),
// Documentation
//
'doc.manual_setup' => '',
'doc.more_information' => '',
// Default settings
//
'settings' => array(
// see the './datamodel.authent-local.xml' for the default settings!
),
)
);