Changeset View
Changeset View
Standalone View
Standalone View
src/applications/conpherence/view/ConpherenceWidgetView.php
| <?php | <?php | ||||
| /** | |||||
| * @group conpherence | |||||
| */ | |||||
| abstract class ConpherenceWidgetView extends AphrontView { | abstract class ConpherenceWidgetView extends AphrontView { | ||||
| private $conpherence; | private $conpherence; | ||||
| private $updateURI; | private $updateURI; | ||||
| public function setUpdateURI($update_uri) { | public function setUpdateURI($update_uri) { | ||||
| $this->updateURI = $update_uri; | $this->updateURI = $update_uri; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getUpdateURI() { | public function getUpdateURI() { | ||||
| return $this->updateURI; | return $this->updateURI; | ||||
| } | } | ||||
| public function setConpherence(ConpherenceThread $conpherence) { | public function setConpherence(ConpherenceThread $conpherence) { | ||||
| $this->conpherence = $conpherence; | $this->conpherence = $conpherence; | ||||
| return $this; | return $this; | ||||
| } | } | ||||
| public function getConpherence() { | public function getConpherence() { | ||||
| return $this->conpherence; | return $this->conpherence; | ||||
| } | } | ||||
| } | } | ||||