Changeset View
Changeset View
Standalone View
Standalone View
src/view/phui/PHUIWorkpanelView.php
| <?php | <?php | ||||
| final class PHUIWorkpanelView extends AphrontTagView { | final class PHUIWorkpanelView extends AphrontTagView { | ||||
| private $cards = array(); | private $cards = array(); | ||||
| private $header; | private $header; | ||||
| private $subheader = null; | private $subheader = null; | ||||
| private $footerAction; | private $footerAction; | ||||
| private $headerActions = array(); | private $headerActions = array(); | ||||
| private $headerTag; | private $headerTag; | ||||
| private $headerIcon; | private $headerIcon; | ||||
| public function setHeaderIcon(PHUIIconView $header_icon) { | public function setHeaderIcon($icon) { | ||||
| $this->headerIcon = $header_icon; | $this->headerIcon = $icon; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getHeaderIcon() { | public function getHeaderIcon() { | ||||
| return $this->headerIcon; | return $this->headerIcon; | ||||
| } | } | ||||
| public function setCards(PHUIObjectItemListView $cards) { | public function setCards(PHUIObjectItemListView $cards) { | ||||
| ▲ Show 20 Lines • Show All 85 Lines • Show Last 20 Lines | |||||