Page MenuHomec4science

AphrontCalendarDayEventView.php
No OneTemporary

File Metadata

Created
Tue, Jan 7, 11:39

AphrontCalendarDayEventView.php

<?php
final class AphrontCalendarDayEventView extends AphrontView {
private $epochStart;
private $epochEnd;
private $name;
private $uri;
public function setName($name) {
$this->name = $name;
return $this;
}
public function getName() {
return $this->name;
}
public function setURI($uri) {
$this->uri = $uri;
return $this;
}
public function getURI() {
return $this->uri;
}
public function setEpochRange($start, $end) {
$this->epochStart = $start;
$this->epochEnd = $end;
return $this;
}
public function getEpochStart() {
return $this->epochStart;
}
public function getEpochEnd() {
return $this->epochEnd;
}
public function render() {
$box = new PHUIObjectBoxView();
$box->setHeaderText($this->name);
return $box;
}
}

Event Timeline