Merge branch 'rcsheets-docstring-cleanup'
[civicrm-core.git] / api / v3 / examples / System / Flush.php
CommitLineData
6a488035 1<?php
fb32de45 2/**
3 * Test Generated example of using system flush API
4 * Flush all system caches *
6a488035
TO
5 */
6function system_flush_example(){
fb32de45 7$params = array();
6a488035 8
fb32de45 9try{
10 $result = civicrm_api3('system', 'flush', $params);
11}
12catch (CiviCRM_API3_Exception $e) {
13 // handle error here
14 $errorMessage = $e->getMessage();
15 $errorCode = $e->getErrorCode();
16 $errorData = $e->getExtraParams();
17 return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
18}
6a488035 19
fb32de45 20return $result;
6a488035
TO
21}
22
fb32de45 23/**
6a488035
TO
24 * Function returns array of result expected from previous function
25 */
26function system_flush_expectedresult(){
27
ee600d6f 28 $expectedResult = array(
6a488035
TO
29 'is_error' => 0,
30 'version' => 3,
31 'count' => 1,
32 'values' => 1,
33);
34
fb32de45 35 return $expectedResult;
6a488035
TO
36}
37
38
39/*
40* This example has been generated from the API test suite. The test that created it is called
41*
42* testFlush and can be found in
69d79249 43* https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/SystemTest.php
6a488035
TO
44*
45* You can see the outcome of the API tests at
69d79249 46* https://test.civicrm.org/job/CiviCRM-master-git/
6a488035
TO
47*
48* To Learn about the API read
69d79249 49* http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
6a488035 50*
69d79249
E
51* Browse the api on your own site with the api explorer
52* http://MYSITE.ORG/path/to/civicrm/api/explorer
6a488035
TO
53*
54* Read more about testing here
55* http://wiki.civicrm.org/confluence/display/CRM/Testing
56*
57* API Standards documentation:
58* http://wiki.civicrm.org/confluence/display/CRM/API+Architecture+Standards
b259a4ab 59*/