2011-04-13 00:57:29 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
abstract class DifferentialRevisionDetailRenderer {
|
2013-03-01 02:12:58 +01:00
|
|
|
private $user;
|
2012-08-16 00:31:39 +02:00
|
|
|
private $diff;
|
2012-06-16 02:15:29 +02:00
|
|
|
private $vsDiff;
|
|
|
|
|
2013-03-01 02:12:58 +01:00
|
|
|
final public function setUser(PhabricatorUser $user) {
|
|
|
|
$this->user = $user;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final protected function getUser() {
|
|
|
|
return $this->user;
|
|
|
|
}
|
|
|
|
|
2012-08-16 00:31:39 +02:00
|
|
|
final public function setDiff(DifferentialDiff $diff) {
|
|
|
|
$this->diff = $diff;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final protected function getDiff() {
|
|
|
|
return $this->diff;
|
|
|
|
}
|
|
|
|
|
2012-06-16 02:15:29 +02:00
|
|
|
final public function setVSDiff(DifferentialDiff $diff) {
|
|
|
|
$this->vsDiff = $diff;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
final protected function getVSDiff() {
|
|
|
|
return $this->vsDiff;
|
|
|
|
}
|
2011-04-13 00:57:29 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This function must return an array of action links that will be
|
|
|
|
* added to the end of action links on the differential revision
|
|
|
|
* page. Each element in the array must be an array which must
|
|
|
|
* contain 'name' and 'href' fields. 'name' will be the name of the
|
|
|
|
* link and 'href' will be the address where the link points
|
|
|
|
* to. 'class' is optional and can be used for specifying a CSS
|
|
|
|
* class.
|
|
|
|
*/
|
|
|
|
abstract public function generateActionLinks(DifferentialRevision $revision,
|
|
|
|
DifferentialDiff $diff);
|
|
|
|
}
|