Fix Dedupe entity_tag mangling bug
[civicrm-core.git] / Civi / Api4 / Dashboard.php
1 <?php
2
3 /*
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC. All rights reserved. |
6 | |
7 | This work is published under the GNU AGPLv3 license with some |
8 | permitted exceptions and without any warranty. For full license |
9 | and copyright information, see https://civicrm.org/licensing |
10 +--------------------------------------------------------------------+
11 */
12
13 /**
14 *
15 * @package CRM
16 * @copyright CiviCRM LLC https://civicrm.org/licensing
17 * $Id$
18 *
19 */
20
21 namespace Civi\Api4;
22
23 /**
24 * Dashboard entity.
25 *
26 * A "dashboard" record represents an item that can be displayed on a user's home screen.
27 * E.g. the "News" or "Getting Started" dashboard items.
28 *
29 * Dashboards can also be created from CiviReports, and some extensions provide dashboards as well.
30 * Displaying an item to a user is done with the `DashboardContact` entity.
31 *
32 * @see \Civi\Api4\DashboardContact
33 * @package Civi\Api4
34 */
35 class Dashboard extends Generic\DAOEntity {
36
37 }