Files
iTop/datamodels/2.x/itop-container-mgmt/module.itop-container-mgmt.php

55 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-container-mgmt/3.2.0',
array(
// Identification
//
'label' => 'Container management',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-virtualization-mgmt/3.2.0'
),
'mandatory' => false,
'visible' => true,
'installer' => 'ContainerTypeInstaller',
// Components
//
'datamodel' => array(
'model.itop-container-mgmt.php', // Contains the PHP code generated by the "compilation" of datamodel.combodo-container-mgmt.xml
),
'webservice' => array(
),
'data.struct' => array(
// add your 'structure' definition XML files here,
'data/en_us.data.itop-container-type.xml',
'data/en_us.data.itop-container-image-type.xml',
),
'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
),
)
);
?>