Merge pull request #19661 from civicrm/5.35
[civicrm-core.git] / Civi / Api4 / Dashboard.php
CommitLineData
76f87236
CW
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
76f87236
CW
17 */
18
19namespace Civi\Api4;
20
21/**
22 * Dashboard entity.
23 *
24 * A "dashboard" record represents an item that can be displayed on a user's home screen.
25 * E.g. the "News" or "Getting Started" dashboard items.
26 *
27 * Dashboards can also be created from CiviReports, and some extensions provide dashboards as well.
28 * Displaying an item to a user is done with the `DashboardContact` entity.
29 *
30 * @see \Civi\Api4\DashboardContact
09815e9c 31 * @searchable false
76f87236
CW
32 * @package Civi\Api4
33 */
34class Dashboard extends Generic\DAOEntity {
35
36}