CRM-15856 - Mailing BAO - Only validate tokens when calling through API
[civicrm-core.git] / api / v3 / SystemLog.php
index 03a9e7e5b3b3b2fdae2cbb4618bbe6c241ead2a1..3aef1ab3649c15f056a48ff0eb46902db0e609c5 100644 (file)
@@ -1,8 +1,7 @@
 <?php
-
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.5                                                |
+ | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
  | Copyright CiviCRM LLC (c) 2004-2014                                |
  +--------------------------------------------------------------------+
  */
 
 /**
- * File for the CiviCRM APIv3 SystemLog functions
+ * This api exposes CiviCRM SystemLog.
  *
  * @package CiviCRM_APIv3
- * @subpackage API_SystemLog
- *
- * @copyright CiviCRM LLC (c) 2004-2014
- * @version $Id: SystemLog.php 30171 2010-10-14 09:11:27Z mover $
- *
  */
 
 /**
+ * Delete system log record.
+ *
  * @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');
+  return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'SystemLog');
 }
 
 /**
- * Create system log
+ * Create system log record.
+ *
  * 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
@@ -59,21 +57,22 @@ function civicrm_api3_system_log_create($params) {
 }
 
 /**
- * @param array $params
+ * Adjust system log create metadata.
  *
- * @return array
+ * @param array $params
  */
 function _civicrm_api3_system_log_create_spec(&$params) {
-  require_once('api/v3/System.php');
-   _civicrm_api3_system_log_spec($params);
+  require_once 'api/v3/System.php';
+  _civicrm_api3_system_log_spec($params);
 }
 
 /**
+ * Get system log record.
+ *
  * @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');
+  return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params, TRUE, 'SystemLog');
 }
-