Changeset View
Changeset View
Standalone View
Standalone View
src/view/phui/PHUIButtonView.php
| <?php | <?php | ||||
| final class PHUIButtonView extends AphrontTagView { | final class PHUIButtonView extends AphrontTagView { | ||||
| const GREEN = 'green'; | const GREEN = 'green'; | ||||
| const GREY = 'grey'; | const GREY = 'grey'; | ||||
| const BLACK = 'black'; | const BLACK = 'black'; | ||||
| const DISABLED = 'disabled'; | const DISABLED = 'disabled'; | ||||
| const SIMPLE = 'simple'; | const SIMPLE = 'simple'; | ||||
| const SIMPLE_YELLOW = 'simple simple-yellow'; | |||||
| const SIMPLE_GREY = 'simple simple-grey'; | |||||
| const SIMPLE_BLUE = 'simple simple-blue'; | |||||
| const SMALL = 'small'; | const SMALL = 'small'; | ||||
| const BIG = 'big'; | const BIG = 'big'; | ||||
| private $size; | private $size; | ||||
| private $text; | private $text; | ||||
| private $subtext; | private $subtext; | ||||
| private $color; | private $color; | ||||
| ▲ Show 20 Lines • Show All 130 Lines • Show Last 20 Lines | |||||