mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
Not necessary anymore in 3.1.0 since :
* N°4875 - Compiler : do not force the model.*.php file to be present in the module.*.php file ('datamodel' key)
* N°4280 - Module loading : do not crash if 'datamodel' file doesn't exists (model.*.php)
52 lines
965 B
PHP
52 lines
965 B
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-darkmoon-theme/3.1.0',
|
|
array(
|
|
// Identification
|
|
//
|
|
'label' => 'Backoffice: Darkmoon 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
|
|
),
|
|
)
|
|
);
|
|
|
|
|
|
?>
|