Skip to content

Instantly share code, notes, and snippets.

@jmertic
Created May 9, 2012 17:29
Show Gist options
  • Select an option

  • Save jmertic/2646970 to your computer and use it in GitHub Desktop.

Select an option

Save jmertic/2646970 to your computer and use it in GitHub Desktop.
<?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