1: <?php
2: namespace Azalea\Selenium\EHR\UI\Messaging;
3:
4: class MessagingTab extends \Azalea\Selenium\EHR\UI\TabPanel
5: {
6: /** @var string $hash The hash fragment corresponding to this view, if any. */
7: protected static $hash = "/messages/inbox";
8:
9: protected static $selector = "#messages-tab";
10: protected static $title = "Messages";
11: protected static $title_selector = ".label-title";
12:
13: function getMenu()
14: {
15: return new MessagingMenu($this);
16: }
17: }