PHP Code:
<?php
$manifest = array(
'acceptable_sugar_versions' => array (
'regex_matches' => array (
0 => "4.5.1*",
1 => "5.0.*",
),
),
'acceptable_sugar_flavors' => array (
0 => 'OS',
1 => 'CE',
),
'name' => 'DIB Horas for SugarCRM',
'description' => 'Controlar horas',
'author' => 'dib',
'published_date' => '2008-08-26',
'version' => '1.0',
'type' => 'module',
'icon' => '',
'is_uninstallable' => true,
);
$installdefs = array(
'id' => 'dib_horas',
'copy' => array(
array('from' => '<basepath>/modules/dib_horas',
'to' => 'modules/dib_horas',
),
array('from' => '<basepath>/modules/Productdib_horas',
'to' => 'modules/Productdib_horas',
)
),
'language'=> array(
array('from' => '<basepath>/application/app_strings.php',
'to_module'=> 'application',
'language' => 'en_us'
),
//BUILDER:START of language
array('from' => '<basepath>/modules/Opportunities/en_us.lang.php',
'to_module' => 'Opportunities',
'language' => 'en_us'
),
array('from' => '<basepath>/modules/Accounts/en_us.lang.php',
'to_module' => 'Accounts',
'language' => 'en_us'
),
array('from' => '<basepath>/modules/Contacts/en_us.lang.php',
'to_module' => 'Contacts',
'language' => 'en_us'
),
array('from' => '<basepath>/modules/Project/en_us.lang.php',
'to_module' => 'Project',
'language' => 'en_us'
),
//BUILDER:END of language
),
'vardefs'=> array(
array('from'=> '<basepath>/vardefs/opportunities_vardefs.php',
'to_module'=> 'Opportunities'
),
array('from'=> '<basepath>/vardefs/accounts_vardefs.php',
'to_module'=> 'Accounts'
),
array('from'=> '<basepath>/vardefs/contacts_vardefs.php',
'to_module'=> 'Contacts'
)
),
'layoutdefs'=> array(
array('from'=> '<basepath>/layoutdefs/opportunities_layoutdefs.php',
'to_module'=> 'Opportunities'
),
array('from'=> '<basepath>/layoutdefs/accounts_layoutdefs.php',
'to_module'=> 'Accounts'
),
array('from'=> '<basepath>/layoutdefs/contacts_layoutdefs.php',
'to_module'=> 'Contacts'
)
),
'beans'=> array(
array('module'=> 'dib_horas',
'class' => 'dib_horas',
'path' => 'modules/dib_horas/dib_horas.php',
'tab' => true,
),
array('module'=> 'Productdib_horas',
'class' => 'Productdib_horas',
'path' => 'modules/Productdib_horas/Productdib_horas.php',
'tab' => false,
)
),
'relationships'=>array(
//BUILDER:START of relationships
array(
'module' => 'Project',
'meta_data' =>'<basepath>/relationships/dib_horas_projectsMetaData.php',
'module_vardefs' =>'<basepath>/vardefs/project_vardefs.php',
'module_layoutdefs'=>'<basepath>/layoutdefs/project_layoutdefs.php'
),
//BUILDER:END of relationships
),
'post_execute'=>array(
0 => '<basepath>/post_install/install_actions.php',
),
);
?>
Bookmarks