INFRA-132 - Batch 14 (g)
[civicrm-core.git] / api / v3 / Dashboard.php
index 784e478bfe916350cb7431d21815847818846874..9cc600bcda172a3610cd471a53d7d93cfad80fa0 100644 (file)
 /**
  * Creates or updates an Dashlet.
  *
- * @param array  $params array of property name/value
- *                             pairs for the Dashlet.
- *
- * @return array Array containing 'is_error' to denote success or failure and details of the created activity
+ * @param array $params
  *
+ * @return array
+ *   Array containing 'is_error' to denote success or failure and details of the created activity
  */
 function civicrm_api3_dashboard_create($params) {
   civicrm_api3_verify_one_mandatory($params, NULL, array(
@@ -61,7 +60,8 @@ function civicrm_api3_dashboard_create($params) {
 /**
  * Specify Meta data for create. Note that this data is retrievable via the getfields function
  * and is used for pre-filling defaults and ensuring mandatory requirements are met.
- * @param array $params (reference) array of parameters determined by getfields
+ * @param array $params
+ *   (reference) array of parameters determined by getfields.
  */
 function _civicrm_api3_dashboard_create_spec(&$params) {
   unset($params['version']);
@@ -70,11 +70,9 @@ function _civicrm_api3_dashboard_create_spec(&$params) {
 /**
  * Gets a CiviCRM Dashlets according to parameters
  *
- * @param array  $params       Associative array of property name/value
- *                             pairs for the activity.
+ * @param array $params
  *
  * @return array
- *
  */
 function civicrm_api3_dashboard_get($params) {
   $bao = new CRM_Core_BAO_Dashboard();
@@ -86,10 +84,10 @@ function civicrm_api3_dashboard_get($params) {
 /**
  * Delete a specified Dashlet.
  *
- * @param array $params array holding 'id' OR 'name' of dashlet to be deleted
- *
- * @return void|CRM_Core_Error  An error if 'name or ID' is invalid,
+ * @param array $params
+ *   Array holding 'id' of dashlet to be deleted.
  *
+ * @return array
  */
 function civicrm_api3_dashboard_delete($params) {
   if (CRM_Core_BAO_Dashboard::deleteDashlet($params['id'])) {