Page MenuHomePhabricator

D18065.diff
No OneTemporary

D18065.diff

diff --git a/src/applications/uiexample/examples/PHUIXComponentsExample.php b/src/applications/uiexample/examples/PHUIXComponentsExample.php
--- a/src/applications/uiexample/examples/PHUIXComponentsExample.php
+++ b/src/applications/uiexample/examples/PHUIXComponentsExample.php
@@ -72,6 +72,23 @@
'color' => PHUIButtonView::GREEN,
'text' => pht('Environmental!'),
),
+ array(
+ 'icon' => 'fa-cog',
+ ),
+ array(
+ 'icon' => 'fa-cog',
+ 'type' => PHUIButtonView::BUTTONTYPE_SIMPLE,
+ ),
+ array(
+ 'text' => array('2 + 2', ' ', '=', ' ', '4'),
+ ),
+ array(
+ 'color' => PHUIButtonView::GREY,
+ 'text' => pht('Cancel'),
+ ),
+ array(
+ 'text' => array('<strong />'),
+ ),
);
foreach ($buttons as $spec) {
diff --git a/src/view/phui/PHUIButtonView.php b/src/view/phui/PHUIButtonView.php
--- a/src/view/phui/PHUIButtonView.php
+++ b/src/view/phui/PHUIButtonView.php
@@ -5,7 +5,6 @@
const GREEN = 'green';
const GREY = 'grey';
const DISABLED = 'disabled';
- const SIMPLE = 'simple';
const SMALL = 'small';
const BIG = 'big';
@@ -175,7 +174,7 @@
$classes[] = 'has-icon';
}
- if (strlen($this->text)) {
+ if ($this->text !== null) {
$classes[] = 'has-text';
}
@@ -238,7 +237,7 @@
$this->subtext);
}
- if (strlen($this->text)) {
+ if ($this->text !== null) {
$text = phutil_tag(
'div',
array(

File Metadata

Mime Type
text/plain
Expires
Mon, Mar 31, 12:28 PM (5 d, 20 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7728091
Default Alt Text
D18065.diff (1 KB)

Event Timeline