I did not use the module loader. I built it in Module Builder and then deployed it.
This is the manifest.php file from
/public_html/crm/custom/modulebuilder/builds/CS_Computers1
Code:
<?php
$manifest = array (
'acceptable_sugar_versions' =>
array (
),
'acceptable_sugar_flavors' =>
array(
'CE', 'PRO','ENT'
),
'readme'=>'',
'key'=>'cspkg',
'author' => 'Chris',
'description' => 'Package that tracks clients' computers.',
'icon' => '',
'is_uninstallable' => true,
'name' => 'CS_Computers1',
'published_date' => '2008-04-04 20:21:19',
'type' => 'module',
'version' => '1207340479',
'remove_tables' => 'prompt',
);
$installdefs = array (
'id' => 'CS_Computers1',
'beans' =>
array (
0 =>
array (
'module' => 'cspkg_CS_ComputerPeople',
'class' => 'cspkg_CS_ComputerPeople',
'path' => 'modules/cspkg_CS_ComputerPeople/cspkg_CS_ComputerPeople.php',
'tab' => true,
),
1 =>
array (
'module' => 'cspkg_ComputerList',
'class' => 'cspkg_ComputerList',
'path' => 'modules/cspkg_ComputerList/cspkg_ComputerList.php',
'tab' => true,
),
2 =>
array (
'module' => 'cspkg_CS_ComputerTest',
'class' => 'cspkg_CS_ComputerTest',
'path' => 'modules/cspkg_CS_ComputerTest/cspkg_CS_ComputerTest.php',
'tab' => true,
),
),
'layoutdefs' =>
array (
),
'relationships' =>
array (
),
'image_dir' => '<basepath>/icons',
'copy' =>
array (
0 =>
array (
'from' => '<basepath>/SugarModules/modules/cspkg_CS_ComputerPeople',
'to' => 'modules/cspkg_CS_ComputerPeople',
),
1 =>
array (
'from' => '<basepath>/SugarModules/modules/cspkg_ComputerList',
'to' => 'modules/cspkg_ComputerList',
),
2 =>
array (
'from' => '<basepath>/SugarModules/modules/cspkg_CS_ComputerTest',
'to' => 'modules/cspkg_CS_ComputerTest',
),
),
'language' =>
array (
0 =>
array (
'from' => '<basepath>/SugarModules/language/application/en_us.lang.php',
'to_module' => 'application',
'language' => 'en_us',
),
),
);
?>
This is the manifest.php file from:
/home/appsmen/public_html/crm/custom/modulebuilder/packages/CS_Computers1/
Code:
<?php
$manifest = array (
'acceptable_sugar_versions' =>
array (
),
'acceptable_sugar_flavors' =>
array(
'CE', 'PRO','ENT'
),
'readme'=>'',
'key'=>'cspkg',
'author' => 'Chris',
'description' => 'Package that tracks clients' computers.',
'icon' => '',
'is_uninstallable' => true,
'name' => 'CS_Computers1',
'published_date' => '2008-04-04 20:24:48',
'type' => 'module',
'version' => '1207340688',
'remove_tables' => 'prompt',
);
?>
Bookmarks