Merge pull request #1199 from totten/master-premature-commit
[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
43* http://svn.civicrm.org/civicrm/trunk/tests/phpunit/CiviTest/api/v3/SystemTest.php
44*
45* You can see the outcome of the API tests at
46* http://tests.dev.civicrm.org/trunk/results-api_v3
47*
48* To Learn about the API read
49* http://book.civicrm.org/developer/current/techniques/api/
50*
51* and review the wiki at
52* http://wiki.civicrm.org/confluence/display/CRMDOC/CiviCRM+Public+APIs
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
59*/