mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 11:22:40 +01:00
9acddd7722
Summary: Updates the pinboard layout with less shadow and more standard border colors. Test Plan: Reload pinboard Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6829
115 lines
2.4 KiB
PHP
115 lines
2.4 KiB
PHP
<?php
|
|
|
|
final class PHUIPinboardItemView extends AphrontView {
|
|
|
|
private $imageURI;
|
|
private $uri;
|
|
private $header;
|
|
private $iconBlock = array();
|
|
|
|
private $imageWidth;
|
|
private $imageHeight;
|
|
|
|
public function setHeader($header) {
|
|
$this->header = $header;
|
|
return $this;
|
|
}
|
|
|
|
public function setURI($uri) {
|
|
$this->uri = $uri;
|
|
return $this;
|
|
}
|
|
|
|
public function setImageURI($image_uri) {
|
|
$this->imageURI = $image_uri;
|
|
return $this;
|
|
}
|
|
|
|
public function setImageSize($x, $y) {
|
|
$this->imageWidth = $x;
|
|
$this->imageHeight = $y;
|
|
return $this;
|
|
}
|
|
|
|
public function addIconCount($icon, $count) {
|
|
$this->iconBlock[] = array($icon, $count);
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
$header = null;
|
|
if ($this->header) {
|
|
$header = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phui-pinboard-item-header '.
|
|
'sprite-gradient gradient-lightblue-header',
|
|
),
|
|
phutil_tag('a', array('href' => $this->uri), $this->header));
|
|
}
|
|
|
|
$image = phutil_tag(
|
|
'a',
|
|
array(
|
|
'href' => $this->uri,
|
|
'class' => 'phui-pinboard-item-image-link',
|
|
),
|
|
phutil_tag(
|
|
'img',
|
|
array(
|
|
'src' => $this->imageURI,
|
|
'width' => $this->imageWidth,
|
|
'height' => $this->imageHeight,
|
|
)));
|
|
|
|
$icons = array();
|
|
if ($this->iconBlock) {
|
|
$icon_list = array();
|
|
foreach ($this->iconBlock as $block) {
|
|
$icon = phutil_tag(
|
|
'span',
|
|
array(
|
|
'class' =>
|
|
'phui-pinboard-icon sprite-icons icons-'.$block[0].'-grey',
|
|
),
|
|
'');
|
|
$count = phutil_tag('span', array(), $block[1]);
|
|
$icon_list[] = phutil_tag(
|
|
'span',
|
|
array(
|
|
'class' => 'phui-pinboard-item-count',
|
|
),
|
|
array($icon, $count));
|
|
}
|
|
$icons = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phui-pinboard-icons',
|
|
),
|
|
$icon_list);
|
|
}
|
|
|
|
$content = $this->renderChildren();
|
|
if ($content) {
|
|
$content = phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phui-pinboard-item-content',
|
|
),
|
|
$content);
|
|
}
|
|
|
|
return phutil_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phui-pinboard-item-view',
|
|
),
|
|
array(
|
|
$header,
|
|
$image,
|
|
$icons,
|
|
$content,
|
|
));
|
|
}
|
|
|
|
}
|