Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15456835
D18065.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D18065.diff
View Options
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
Details
Attached
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)
Attached To
Mode
D18065: Clean up some PHUI/PHUIX button behaviors
Attached
Detach File
Event Timeline
Log In to Comment