Created
May 9, 2012 17:29
-
-
Save jmertic/2646970 to your computer and use it in GitHub Desktop.
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 | |
| $dependencies['Contacts']['dynamic_rollup_dep'] = array( | |
| 'hooks' => array("edit", "view"), //not including save so that the value isn't stored in the DB | |
| 'trigger' => 'true', //Optional, the trigger for the dependency. Defaults to 'true'. | |
| 'triggerFields' => array('status'), | |
| 'onload' => true, | |
| 'actions' => array( | |
| array( | |
| 'name' => 'SetValue', | |
| 'params' => array( | |
| 'target' => 'my_field_c', | |
| 'value' => rollupSum($cases, "number") | |
| ) | |
| ) | |
| ) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment