MessageTemplate - Change APIv3 references from "MessageTemplates" to "MessageTemplate"
authorTim Otten <totten@civicrm.org>
Thu, 12 Sep 2013 05:30:40 +0000 (22:30 -0700)
committerTim Otten <totten@civicrm.org>
Thu, 12 Sep 2013 05:40:50 +0000 (22:40 -0700)
api/v3/MessageTemplates.php
tests/phpunit/api/v3/MessageTemplatesTest.php

index 2850c9e095c79b7ebe5160d9b7bfd6719694093e..80fc3abe197454073dcf143cc9ed6a3efdb43c35 100644 (file)
@@ -26,7 +26,7 @@
 */
 
 /**
- * File for the CiviCRM APIv3 message_templates functions
+ * File for the CiviCRM APIv3 message_template functions
  *
  * @package CiviCRM_SEPA
  *
@@ -36,7 +36,7 @@
 /**
  * @access public
  */
-function civicrm_api3_message_templates_create($params) {
+function civicrm_api3_message_template_create($params) {
   return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
@@ -46,7 +46,7 @@ function civicrm_api3_message_templates_create($params) {
  * The metadata is used for setting defaults, documentation & validation
  * @param array $params array or parameters determined by getfields
  */
-function _civicrm_api3_message_templates_create_spec(&$params) {
+function _civicrm_api3_message_template_create_spec(&$params) {
   $params['msg_title']['api.required'] = 1;
   $params['is_active']['api.default'] = true;
 /*  $params['entity_id']['api.required'] = 1;
@@ -59,18 +59,18 @@ function _civicrm_api3_message_templates_create_spec(&$params) {
  * @param  array  $params
  *
  * @return boolean | error  true if successfull, error otherwise
- * {@getfields message_templates_delete}
+ * {@getfields message_template_delete}
  * @access public
  */
-function civicrm_api3_message_templates_delete($params) {
+function civicrm_api3_message_template_delete($params) {
   return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
 
-function _civicrm_api3_message_templates_get_spec(&$params) {
+function _civicrm_api3_message_template_get_spec(&$params) {
 }
 /**
- * Retrieve one or more message_templatess
+ * Retrieve one or more message_template
  *
  * @param  array input parameters
  *
@@ -80,10 +80,10 @@ function _civicrm_api3_message_templates_get_spec(&$params) {
  * @param  array $params  an associative array of name/value pairs.
  *
  * @return  array api result array
- * {@getfields message_templates_get}
+ * {@getfields message_template_get}
  * @access public
  */
-function civicrm_api3_message_templates_get($params) {
+function civicrm_api3_message_template_get($params) {
   return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
 }
 
index a038ddb5fcf217f53e80532082e675f9b4dd4c3c..8636a27ac618a93a4fdd4fc51a17d45d7de722c2 100644 (file)
@@ -32,11 +32,11 @@ require_once 'CiviTest/CiviUnitTestCase.php';
  *
  *  @package CiviCRM_APIv3
  */
-class api_v3_MessageTemplatesTest extends CiviUnitTestCase {
+class api_v3_MessageTemplateTest extends CiviUnitTestCase {
   /**
    * Assume empty database with just civicrm_data
    */
-  protected $entity = 'MessageTemplates';
+  protected $entity = 'MessageTemplate';
   protected $params;
 
 
@@ -62,7 +62,7 @@ class api_v3_MessageTemplatesTest extends CiviUnitTestCase {
    * test create function succeeds
    */
   public function testCreate() {
-    $result = $this->callAPIAndDocument('MessageTemplates', 'create', $this->params, __FUNCTION__, __FILE__);
+    $result = $this->callAPIAndDocument('MessageTemplate', 'create', $this->params, __FUNCTION__, __FILE__);
     $this->getAndCheck($this->params, $result['id'], $this->entity);
   }
 
@@ -73,7 +73,7 @@ class api_v3_MessageTemplatesTest extends CiviUnitTestCase {
    *
    */
   public function testGet() {
-    $result = $this->callAPIAndDocument('MessageTemplates', 'get', $this->params, __FUNCTION__, __FILE__);
+    $result = $this->callAPIAndDocument('MessageTemplate', 'get', $this->params, __FUNCTION__, __FILE__);
     $this->assertEquals(1, $result['count'], 'In line ' . __LINE__);
     $this->assertNotNull($result['values'][$result['id']]['id'], 'In line ' . __LINE__);
   }
@@ -83,7 +83,7 @@ class api_v3_MessageTemplatesTest extends CiviUnitTestCase {
  */
   public function testDelete() {
     $entity = $this->createTestEntity();
-    $result = $this->callAPIAndDocument('MessageTemplates', 'delete', array('id' => $entity['id']), __FUNCTION__, __FILE__);
+    $result = $this->callAPIAndDocument('MessageTemplate', 'delete', array('id' => $entity['id']), __FUNCTION__, __FILE__);
     $checkDeleted = $this->callAPISuccess($this->entity, 'get', array(
       'id' => $entity['id']
     ));