mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 03:12:41 +01:00
92ee3e7642
Summary: We plan to use these more in future mocks. Adds base colors and re-uses in Phame. Test Plan: Phame, mobile and desktop. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15069
64 lines
1.2 KiB
PHP
64 lines
1.2 KiB
PHP
<?php
|
|
|
|
final class PHUIBoxView extends AphrontTagView {
|
|
|
|
private $margin = array();
|
|
private $padding = array();
|
|
private $border = false;
|
|
private $color;
|
|
|
|
const BLUE = 'phui-box-blue';
|
|
const GREY = 'phui-box-grey';
|
|
|
|
public function addMargin($margin) {
|
|
$this->margin[] = $margin;
|
|
return $this;
|
|
}
|
|
|
|
public function addPadding($padding) {
|
|
$this->padding[] = $padding;
|
|
return $this;
|
|
}
|
|
|
|
public function setBorder($border) {
|
|
$this->border = $border;
|
|
return $this;
|
|
}
|
|
|
|
public function setColor($color) {
|
|
$this->color = $color;
|
|
return $this;
|
|
}
|
|
|
|
protected function getTagAttributes() {
|
|
require_celerity_resource('phui-box-css');
|
|
$outer_classes = array();
|
|
$outer_classes[] = 'phui-box';
|
|
|
|
if ($this->border) {
|
|
$outer_classes[] = 'phui-box-border';
|
|
}
|
|
|
|
foreach ($this->margin as $margin) {
|
|
$outer_classes[] = $margin;
|
|
}
|
|
|
|
foreach ($this->padding as $padding) {
|
|
$outer_classes[] = $padding;
|
|
}
|
|
|
|
if ($this->color) {
|
|
$outer_classes[] = $this->color;
|
|
}
|
|
|
|
return array('class' => $outer_classes);
|
|
}
|
|
|
|
protected function getTagName() {
|
|
return 'div';
|
|
}
|
|
|
|
protected function getTagContent() {
|
|
return $this->renderChildren();
|
|
}
|
|
}
|