Created
September 24, 2013 11:57
-
-
Save matthewpoer/6683665 to your computer and use it in GitHub Desktop.
Example SugarCRM package's manifest using layoutfields to add a new custom field to the existing layout
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$manifest = array( | |
'acceptable_sugar_versions' => array(), | |
'acceptable_sugar_flavors' => array(), | |
'readme' => '', | |
'key' => 'PSI', | |
'author' => 'Profiling Solutions', | |
'description' => ' Provide example manifest with layoutfields array ', | |
'icon' => '', | |
'is_uninstallable' => true, | |
'name' => 'Layoutfields Example', | |
'published_date' => '2013-09-24 7:24:17', | |
'type' => 'module', | |
'version' => '1.0', | |
); | |
$installdefs = array( | |
'id' => '2013Q2Customizations005', | |
'layoutfields'=> array( | |
array( | |
'additional_fields'=> array( | |
'Contacts' => 'send_intro_email_c', | |
), | |
), | |
), | |
'custom_fields' => array( | |
'Contactssend_intro_email_c' => array( | |
'id' => 'Contactssend_intro_email_c', | |
'name' => 'send_intro_email_c', | |
'label' => 'LBL_SEND_INTRO_EMAIL', | |
'comments' => '', | |
'help' => '', | |
'module' => 'Contacts', | |
'type' => 'bool', | |
'max_size' => '255', | |
'require_option' => '0', | |
'default_value' => '', | |
'date_modified' => '2013-08-21 08:27:00', | |
'deleted' => '0', | |
'audited' => '1', | |
'mass_update' => '1', | |
'duplicate_merge' => '0', | |
'reportable' => '1', | |
'importable' => 'true', | |
'ext1' => '', | |
'ext2' => '', | |
'ext3' => '', | |
'ext4' => '', | |
), | |
), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment