Skip to content

Instantly share code, notes, and snippets.

@mmarum-sugarcrm
Created June 5, 2015 18:44
Show Gist options
  • Save mmarum-sugarcrm/c0181bd69333c07025d7 to your computer and use it in GitHub Desktop.
Save mmarum-sugarcrm/c0181bd69333c07025d7 to your computer and use it in GitHub Desktop.
Example Sugar Logic message field
<?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