Update test examples.
[civicrm-core.git] / api / v3 / examples / MessageTemplate / Create.php
index 7d499bbdff6964966d85166274d8f429551a04aa..094118233901e9664e5cc2f2249446a30327f012 100644 (file)
@@ -1,67 +1,77 @@
 <?php
 /**
- * Test Generated example of using message_template create API
- * *
+ * Test Generated example demonstrating the MessageTemplate.create API.
+ *
+ * @return array
+ *   API result array
  */
-function message_template_create_example(){
-$params = array(
-  'msg_title' => 'msg_title_131',
-  'msg_subject' => 'msg_subject_131',
-  'msg_text' => 'msg_text_131',
-  'msg_html' => 'msg_html_131',
-  'workflow_id' => 131,
-  'is_default' => '1',
-  'is_reserved' => 1,
-);
+function message_template_create_example() {
+  $params = array(
+    'msg_title' => 'msg_title_165',
+    'msg_subject' => 'msg_subject_165',
+    'msg_text' => 'msg_text_165',
+    'msg_html' => 'msg_html_165',
+    'workflow_id' => 165,
+    'is_default' => '1',
+    'is_reserved' => 1,
+  );
 
-try{
-  $result = civicrm_api3('message_template', 'create', $params);
-}
-catch (CiviCRM_API3_Exception $e) {
-  // handle error here
-  $errorMessage = $e->getMessage();
-  $errorCode = $e->getErrorCode();
-  $errorData = $e->getExtraParams();
-  return array('error' => $errorMessage, 'error_code' => $errorCode, 'error_data' => $errorData);
-}
+  try{
+    $result = civicrm_api3('MessageTemplate', 'create', $params);
+  }
+  catch (CiviCRM_API3_Exception $e) {
+    // Handle error here.
+    $errorMessage = $e->getMessage();
+    $errorCode = $e->getErrorCode();
+    $errorData = $e->getExtraParams();
+    return array(
+      'is_error' => 1,
+      'error_message' => $errorMessage,
+      'error_code' => $errorCode,
+      'error_data' => $errorData,
+    );
+  }
 
-return $result;
+  return $result;
 }
 
 /**
- * Function returns array of result expected from previous function
+ * Function returns array of result expected from previous function.
+ *
+ * @return array
+ *   API result array
  */
-function message_template_create_expectedresult(){
+function message_template_create_expectedresult() {
 
   $expectedResult = array(
-  'is_error' => 0,
-  'version' => 3,
-  'count' => 1,
-  'id' => 2,
-  'values' => array(
-      '2' => array(
-          'id' => '2',
-          'msg_title' => 'msg_title_131',
-          'msg_subject' => 'msg_subject_131',
-          'msg_text' => 'msg_text_131',
-          'msg_html' => 'msg_html_131',
-          'is_active' => '1',
-          'workflow_id' => '131',
-          'is_default' => '1',
-          'is_reserved' => '1',
-          'pdf_format_id' => '',
-        ),
+    'is_error' => 0,
+    'version' => 3,
+    'count' => 1,
+    'id' => 67,
+    'values' => array(
+      '67' => array(
+        'id' => '67',
+        'msg_title' => 'msg_title_165',
+        'msg_subject' => 'msg_subject_165',
+        'msg_text' => 'msg_text_165',
+        'msg_html' => 'msg_html_165',
+        'is_active' => '1',
+        'workflow_id' => '165',
+        'is_default' => '1',
+        'is_reserved' => '1',
+        'is_sms' => '',
+        'pdf_format_id' => '',
+      ),
     ),
-);
+  );
 
   return $expectedResult;
 }
 
-
 /*
-* This example has been generated from the API test suite. The test that created it is called
-*
-* testCreate and can be found in
+* This example has been generated from the API test suite.
+* The test that created it is called "testCreate"
+* and can be found at:
 * https://github.com/civicrm/civicrm-core/blob/master/tests/phpunit/api/v3/MessageTemplateTest.php
 *
 * You can see the outcome of the API tests at
@@ -71,7 +81,7 @@ function message_template_create_expectedresult(){
 * http://wiki.civicrm.org/confluence/display/CRMDOC/Using+the+API
 *
 * Browse the api on your own site with the api explorer
-* http://MYSITE.ORG/path/to/civicrm/api/explorer
+* http://MYSITE.ORG/path/to/civicrm/api
 *
 * Read more about testing here
 * http://wiki.civicrm.org/confluence/display/CRM/Testing