Merge pull request #3679 from yashodha/CRM-14951
[civicrm-core.git] / api / v3 / SystemLog.php
index 90809ca386c2a728c0c7ceb9f9ff28a36bcc470b..b61843def29927992ce92ed9f433dd7aea2fe872 100644 (file)
@@ -47,6 +47,9 @@ function civicrm_api3_system_log_delete($params) {
 }
 
 /**
+ * Create system log
+ * It's arguable whether this function should exist as it fits our crud pattern and adding it meets our SyntaxConformance test requirements
+ * but it just wraps system.log which is more consistent with the PSR3 implemented.
  * @param $params
  *
  * @return array
@@ -55,6 +58,16 @@ function civicrm_api3_system_log_create($params) {
   return civicrm_api3('system', 'log', $params);
 }
 
+/**
+ * @param $params
+ *
+ * @return array
+ */
+function _civicrm_api3_system_log_create_spec(&$params) {
+  require_once('api/v3/System.php');
+   _civicrm_api3_system_log_spec($params);
+}
+
 /**
  * @param $params
  *