INFRA-132 - Fix comment spacing
[civicrm-core.git] / api / v3 / SystemLog.php
index 2c54d4482b606ac11d2c9a6265228555a3f52dab..7696629872afed49ef6259eaa47226c66c01e23e 100644 (file)
@@ -2,7 +2,7 @@
 
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  *
  */
 
-function civicrm_api3_system_log_get($params) {
-  return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, True, 'SystemLog');
+/**
+ * @param array $params
+ *
+ * @return array
+ */
+function civicrm_api3_system_log_delete($params) {
+  return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'SystemLog');
+}
+
+/**
+ * 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 array $params
+ *
+ * @return array
+ */
+function civicrm_api3_system_log_create($params) {
+  return civicrm_api3('system', 'log', $params);
 }
 
+/**
+ * @param array $params
+ *
+ * @return array
+ */
+function _civicrm_api3_system_log_create_spec(&$params) {
+  require_once 'api/v3/System.php';
+  _civicrm_api3_system_log_spec($params);
+}
+
+/**
+ * @param array $params
+ *
+ * @return array
+ */
+function civicrm_api3_system_log_get($params) {
+  return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'SystemLog');
+}