mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
18c76b8a46
Summary: also re-enables the updating of the widgets and "cleans up" the javascript a tad. Ref T2867 Test Plan: all sorts of conpherence fun like adding people to threads, adding files, pontificating, etc Reviewers: epriestley, chad Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2867 Differential Revision: https://secure.phabricator.com/D5595
26 lines
519 B
PHP
26 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;
|
|
}
|
|
}
|