2012-10-01 23:06:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorPinboardItemView extends AphrontView {
|
|
|
|
|
|
|
|
private $imageURI;
|
|
|
|
private $uri;
|
|
|
|
private $header;
|
2013-03-05 19:43:03 +01:00
|
|
|
private $iconBlock = array();
|
2012-10-01 23:06:00 +02:00
|
|
|
|
2012-10-04 23:33:50 +02:00
|
|
|
private $imageWidth;
|
|
|
|
private $imageHeight;
|
2012-10-01 23:06:00 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2013-03-05 19:43:03 +01:00
|
|
|
public function addIconCount($icon, $count) {
|
|
|
|
$this->iconBlock[] = array($icon, $count);
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2012-10-01 23:06:00 +02:00
|
|
|
public function render() {
|
|
|
|
$header = null;
|
|
|
|
if ($this->header) {
|
2013-01-18 09:32:58 +01:00
|
|
|
$header = phutil_tag(
|
2012-10-09 20:58:37 +02:00
|
|
|
'div',
|
2012-10-01 23:06:00 +02:00
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-header',
|
|
|
|
),
|
2013-01-29 03:44:54 +01:00
|
|
|
phutil_tag('a', array('href' => $this->uri), $this->header));
|
2012-10-01 23:06:00 +02:00
|
|
|
}
|
|
|
|
|
2013-01-18 03:47:13 +01:00
|
|
|
$image = phutil_tag(
|
2012-10-01 23:06:00 +02:00
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->uri,
|
|
|
|
'class' => 'phabricator-pinboard-item-image-link',
|
|
|
|
),
|
2013-01-18 03:39:02 +01:00
|
|
|
phutil_tag(
|
2012-10-01 23:06:00 +02:00
|
|
|
'img',
|
|
|
|
array(
|
|
|
|
'src' => $this->imageURI,
|
|
|
|
'width' => $this->imageWidth,
|
|
|
|
'height' => $this->imageHeight,
|
|
|
|
)));
|
|
|
|
|
2013-03-05 19:43:03 +01:00
|
|
|
$icons = array();
|
|
|
|
if ($this->iconBlock) {
|
|
|
|
$icon_list = array();
|
|
|
|
foreach ($this->iconBlock as $block) {
|
|
|
|
$icon = phutil_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' =>
|
|
|
|
'phabricator-pinboard-icon sprite-icon action-'.$block[0].'-grey',
|
|
|
|
),
|
|
|
|
'');
|
|
|
|
$count = phutil_tag('span', array(), $block[1]);
|
|
|
|
$icon_list[] = phutil_tag(
|
|
|
|
'span',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-count',
|
|
|
|
),
|
|
|
|
array($icon, $count));
|
|
|
|
}
|
|
|
|
$icons = phutil_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-icons',
|
|
|
|
),
|
|
|
|
$icon_list);
|
|
|
|
}
|
|
|
|
|
2013-02-13 23:50:15 +01:00
|
|
|
$content = $this->renderChildren();
|
2012-10-01 23:06:00 +02:00
|
|
|
if ($content) {
|
2013-01-29 03:44:54 +01:00
|
|
|
$content = phutil_tag(
|
2012-10-01 23:06:00 +02:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-content',
|
|
|
|
),
|
|
|
|
$content);
|
|
|
|
}
|
|
|
|
|
2013-01-18 09:32:58 +01:00
|
|
|
return phutil_tag(
|
2012-10-01 23:06:00 +02:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-view',
|
|
|
|
),
|
2013-02-13 23:50:15 +01:00
|
|
|
$this->renderSingleView(
|
2013-01-29 03:44:54 +01:00
|
|
|
array(
|
|
|
|
$header,
|
|
|
|
$image,
|
2013-03-05 19:43:03 +01:00
|
|
|
$icons,
|
2013-01-29 03:44:54 +01:00
|
|
|
$content,
|
|
|
|
)));
|
2012-10-01 23:06:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|