Files
iTop/datamodels/2.x/itop-oauth-client/module.itop-oauth-client.php
Pierre Goiffon b8892e9651 🔖 Prepare 3.0.4 version
2024-01-05 17:34:39 +01:00

54 lines
1.2 KiB
PHP

<?php
//
// iTop module definition file
//
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-oauth-client/3.0.4',
array(
// Identification
//
'label' => 'OAuth 2.0 client',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-welcome-itil/3.0.1,',
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'vendor/autoload.php',
'model.itop-oauth-client.php', // Contains the PHP code generated by the "compilation" of datamodel.remote-authent-oauth.xml
'src/Service/PopupMenuExtension.php',
'src/Service/ApplicationUIExtension.php',
),
'webservice' => array(
),
'data.struct' => array(
// add your 'structure' definition XML files here,
),
'data.sample' => array(
// add your sample data XML files here,
),
// Documentation
//
'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
'doc.more_information' => '', // hyperlink to more information, if any
// Default settings
//
'settings' => array(
// Module specific settings go here, if any
),
)
);