Created
June 5, 2015 18:44
-
-
Save mmarum-sugarcrm/c0181bd69333c07025d7 to your computer and use it in GitHub Desktop.
Example Sugar Logic message field
This file contains hidden or 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 | |
// created: 2015-06-05 10:27:18 | |
$dictionary['Lead']['fields']['next_step_c']['duplicate_merge_dom_value']=0; | |
$dictionary['Lead']['fields']['next_step_c']['labelValue']='Next Step'; | |
$dictionary['Lead']['fields']['next_step_c']['full_text_search']=array ( | |
'boost' => '0', | |
'enabled' => false, | |
); | |
$dictionary['Lead']['fields']['next_step_c']['calculated']='1'; | |
$dictionary['Lead']['fields']['next_step_c']['formula']='ifElse(equal(count($tasks),0),"You must create a follow up Task for this Lead!",concat("Complete ",toString(related($tasks,"name"))))'; | |
$dictionary['Lead']['fields']['next_step_c']['enforced']='1'; | |
$dictionary['Lead']['fields']['next_step_c']['dependency']=''; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment