Hi,
This module installed fine in 4.5 but not in 4.5.1. What's wrong with the manifest?
<?PHP
// manifest file for information regarding application of new code
$manifest = array(
// only install on the following regex sugar versions (if empty, no check)
'acceptable_sugar_versions' => array(),
// name of new code
'name' => 'Contracts',
// description of new code
'description' => 'Test Contracts Module',
// author of new code
'author' => 'Jim Smith ',
// date published
'published_date' => '2007-02-09',
// version of code
'version' => '00.02',
// whether or not you can uninstall this module
'is_uninstallable' => TRUE,
// type of code (valid choices are: full, langpack, module, patch, theme )
'type' => 'module',
// icon for displaying in UI (path to graphic contained within zip package)
'icon' => '',
);
$installdefs = array(
'id'=> 'test_contracts',
'copy' => array(
array(
'from'=> '<basepath>/test_contracts',
'to'=> 'modules/test_contracts',
),
),
'language'=> array(
array(
'from'=> '<basepath>/application/app_strings.en_us.lang.php',
'to_module'=> 'application',
'language'=>'en_us'),
),
'beans' => array(
array(
'module'=> 'test_contracts',
'class'=> 'mtContract',
'path'=> 'modules/test_contracts',
'tab'=> true,
),
),
);
?>


LinkBack URL
About LinkBacks



Reply With Quote
Bookmarks