mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
27 lines
519 B
PHP
27 lines
519 B
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* @group conpherence
|
||
|
*/
|
||
|
abstract class ConpherenceWidgetView extends AphrontView {
|
||
|
|
||
|
private $conpherence;
|
||
|
private $updateURI;
|
||
|
|
||
|
public function setUpdateURI($update_uri) {
|
||
|
$this->updateURI = $update_uri;
|
||
|
return $this;
|
||
|
}
|
||
|
public function getUpdateURI() {
|
||
|
return $this->updateURI;
|
||
|
}
|
||
|
|
||
|
public function setConpherence(ConpherenceThread $conpherence) {
|
||
|
$this->conpherence = $conpherence;
|
||
|
return $this;
|
||
|
}
|
||
|
public function getConpherence() {
|
||
|
return $this->conpherence;
|
||
|
}
|
||
|
}
|