X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fclass.api.php;h=93dda31ec1b2c266dfa9dd3a47616d6652d09de1;hb=455cfd164952b15f53909506179b56ab3d8f32a6;hp=bd76f1146349f2a57362b348bb8d420b85881681;hpb=639a47e989e0b5b12be546d93f99ec0571f887ee;p=civicrm-core.git diff --git a/api/class.api.php b/api/class.api.php index bd76f11463..93dda31ec1 100644 --- a/api/class.api.php +++ b/api/class.api.php @@ -5,7 +5,7 @@ * This class allows to consume the API, either from within a module that knows civicrm already: * * @code - * require_once('api/class/api.php'); + * require_once('api/class.api.php'); * $api = new civicrm_api3(); * @endcode * @@ -20,7 +20,9 @@ * or to query a remote server via the rest api * * @code - * $api = new civicrm_api3 (array ('server' => 'http://example.org','api_key'=>'theusersecretkey','key'=>'thesitesecretkey')); + * $api = new civicrm_api3 (array ('server' => 'http://example.org', + * 'api_key'=>'theusersecretkey', + * 'key'=>'thesitesecretkey')); * @endcode * * No matter how initialised and if civicrm is local or remote, you use the class the same way. @@ -196,6 +198,13 @@ class civicrm_api3 { return $res; } + /** + * @param $entity + * @param string $action + * @param array $params + * + * @return bool + */ function call($entity, $action = 'Get', $params = array()) { if (is_int($params)) { $params = array('id' => $params);