mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
52 lines
1.0 KiB
PHP
52 lines
1.0 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
|
|
'combodo-backoffice-fullmoon-protanopia-deuteranopia-theme/3.3.0',
|
|
array(
|
|
// Identification
|
|
//
|
|
'label' => 'Backoffice: Fullmoon with protonopia & deuteranopia accessibility theme',
|
|
'category' => 'business',
|
|
|
|
// Setup
|
|
//
|
|
'dependencies' => array(
|
|
|
|
),
|
|
'mandatory' => true,
|
|
'visible' => false,
|
|
|
|
// Components
|
|
//
|
|
'datamodel' => array(
|
|
),
|
|
'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
|
|
),
|
|
)
|
|
);
|
|
|
|
|
|
?>
|