Changeset View
Changeset View
Standalone View
Standalone View
src/applications/conpherence/view/ConpherenceMenuItemView.php
| <?php | <?php | ||||
| /** | |||||
| * @group conpherence | |||||
| */ | |||||
| final class ConpherenceMenuItemView extends AphrontTagView { | final class ConpherenceMenuItemView extends AphrontTagView { | ||||
| private $title; | private $title; | ||||
| private $subtitle; | private $subtitle; | ||||
| private $imageURI; | private $imageURI; | ||||
| private $href; | private $href; | ||||
| private $epoch; | private $epoch; | ||||
| private $unreadCount; | private $unreadCount; | ||||
| ▲ Show 20 Lines • Show All 100 Lines • ▼ Show 20 Lines | protected function getTagContent() { | ||||
| return array( | return array( | ||||
| $image, | $image, | ||||
| $title, | $title, | ||||
| $subtitle, | $subtitle, | ||||
| $unread_count, | $unread_count, | ||||
| ); | ); | ||||
| } | } | ||||
| } | } | ||||