1: <?php
2:
3: namespace Charcoal\Ui\Dashboard;
4:
5: // Intra-module (`charcoal-ui`) dependency
6: use \Charcoal\Ui\Dashboard\AbstractDashboard;
7:
8: /**
9: * A Generic Dashboard
10: *
11: * Concreete implementation of {@see \Charcoal\Ui\Dashboard\DashboardInterface}.
12: */
13: class GenericDashboard extends AbstractDashboard
14: {
15: /**
16: * Retrieve the dashboard type.
17: *
18: * @return string
19: */
20: public function type()
21: {
22: return 'charcoal/ui/dashboard/generic';
23: }
24: }
25: