Disable the "Basic" data model, which is not ready for the beta

SVN:trunk[589]
This commit is contained in:
Denis Flaven
2010-07-07 10:01:29 +00:00
parent 1e17f8c671
commit b7d6771ddb

View File

@@ -0,0 +1,41 @@
<?php
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-basic/1.0.0',
array(
// Identification
//
'label' => 'iTop Basic Model',
// Setup
//
'dependencies' => array(
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'model.itop-basic.php',
),
'dictionary' => array(
'en.dict.itop-basic.php',
),
'data.struct' => array(
//'data.struct.itop-basic.xml',
),
'data.sample' => array(
//'data.sample.itop-basic.xml',
),
// Documentation
//
'doc.manual_setup' => '/doc/xxx/yyy.htm',
'doc.more_information' => '/doc/xxx/yyy.htm',
)
);
?>