Import from SVN (r45945, r596)
[civicrm-core.git] / tests / phpunit / api / v3 / dataset / resolver / api / v3 / Contact / ExampleAction2.php
1 <?php
2 // $Id$
3
4 function civicrm_api3_contact_example_action2($params) {
5 return civicrm_api3_create_success(
6 array('0' => 'civicrm_api3_contact_example_action2 is ok'),
7 $params,
8 'contact',
9 'example_action2'
10 );
11 }
12