2012-10-01 23:06:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorPinboardItemView extends AphrontView {
|
|
|
|
|
|
|
|
private $imageURI;
|
|
|
|
private $uri;
|
|
|
|
private $header;
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function render() {
|
|
|
|
$header = null;
|
|
|
|
if ($this->header) {
|
2012-10-09 20:58:37 +02:00
|
|
|
$header = hsprintf('<a href="%s">%s</a>', $this->uri, $this->header);
|
2012-10-01 23:06:00 +02:00
|
|
|
$header = phutil_render_tag(
|
2012-10-09 20:58:37 +02:00
|
|
|
'div',
|
2012-10-01 23:06:00 +02:00
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-header',
|
|
|
|
),
|
2012-10-09 20:58:37 +02:00
|
|
|
$header);
|
2012-10-01 23:06:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$image = phutil_render_tag(
|
|
|
|
'a',
|
|
|
|
array(
|
|
|
|
'href' => $this->uri,
|
|
|
|
'class' => 'phabricator-pinboard-item-image-link',
|
|
|
|
),
|
|
|
|
phutil_render_tag(
|
|
|
|
'img',
|
|
|
|
array(
|
|
|
|
'src' => $this->imageURI,
|
|
|
|
'width' => $this->imageWidth,
|
|
|
|
'height' => $this->imageHeight,
|
|
|
|
)));
|
|
|
|
|
|
|
|
$content = $this->renderChildren();
|
|
|
|
if ($content) {
|
|
|
|
$content = phutil_render_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-content',
|
|
|
|
),
|
|
|
|
$content);
|
|
|
|
}
|
|
|
|
|
|
|
|
return phutil_render_tag(
|
|
|
|
'div',
|
|
|
|
array(
|
|
|
|
'class' => 'phabricator-pinboard-item-view',
|
|
|
|
),
|
|
|
|
$header.
|
|
|
|
$image.
|
|
|
|
$content);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|