2012-10-01 14:06:00 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorPinboardItemView extends AphrontView {
|
|
|
|
|
|
|
|
private $imageURI;
|
|
|
|
private $uri;
|
|
|
|
private $header;
|
|
|
|
|
2012-10-04 14:33:50 -07:00
|
|
|
private $imageWidth;
|
|
|
|
private $imageHeight;
|
2012-10-01 14:06:00 -07: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render() {
|
|
|
|
$header = null;
|
|
|
|
if ($this->header) {
|
2013-01-18 00:32:58 -08:00
|
|
|
$header = phutil_tag(
|
2012-10-09 11:58:37 -07:00
|
|
|
'div',
|
2012-10-01 14:06:00 -07:00
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-header',
|
|
|
|
),
|
2013-01-28 18:44:54 -08:00
|
|
|
phutil_tag('a', array('href' => $this->uri), $this->header));
|
2012-10-01 14:06:00 -07:00
|
|
|
}
|
|
|
|
|
2013-01-17 18:47:13 -08:00
|
|
|
$image = phutil_tag(
|
2012-10-01 14:06:00 -07:00
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->uri,
|
|
|
|
'class' => 'phabricator-pinboard-item-image-link',
|
|
|
|
),
|
2013-01-17 18:39:02 -08:00
|
|
|
phutil_tag(
|
2012-10-01 14:06:00 -07:00
|
|
|
'img',
|
|
|
|
array(
|
|
|
|
'src' => $this->imageURI,
|
|
|
|
'width' => $this->imageWidth,
|
|
|
|
'height' => $this->imageHeight,
|
|
|
|
)));
|
|
|
|
|
2013-02-11 14:55:35 -08:00
|
|
|
$content = $this->renderChildren();
|
2012-10-01 14:06:00 -07:00
|
|
|
if ($content) {
|
2013-01-28 18:44:54 -08:00
|
|
|
$content = phutil_tag(
|
2012-10-01 14:06:00 -07:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-content',
|
|
|
|
),
|
|
|
|
$content);
|
|
|
|
}
|
|
|
|
|
2013-01-18 00:32:58 -08:00
|
|
|
return phutil_tag(
|
2012-10-01 14:06:00 -07:00
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-view',
|
|
|
|
),
|
2013-02-11 14:43:25 -08:00
|
|
|
$this->renderSingleView(
|
2013-01-28 18:44:54 -08:00
|
|
|
array(
|
|
|
|
$header,
|
|
|
|
$image,
|
|
|
|
$content,
|
|
|
|
)));
|
2012-10-01 14:06:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|