Page MenuHomePhorge

ConpherenceParticipantController.php
No OneTemporary

Size
955 B
Referenced Files
None
Subscribers
None

ConpherenceParticipantController.php

<?php
final class ConpherenceParticipantController extends ConpherenceController {
public function shouldAllowPublic() {
return true;
}
public function handleRequest(AphrontRequest $request) {
$viewer = $request->getViewer();
$conpherence_id = $request->getURIData('id');
if (!$conpherence_id) {
return new Aphront404Response();
}
$conpherence = id(new ConpherenceThreadQuery())
->setViewer($viewer)
->withIDs(array($conpherence_id))
->needParticipants(true)
->executeOne();
if (!$conpherence) {
return new Aphront404Response();
}
$uri = $this->getApplicationURI('edit/'.$conpherence->getID().'/');
$content = id(new ConpherenceParticipantView())
->setUser($this->getViewer())
->setConpherence($conpherence)
->setUpdateURI($uri);
$content = array('widgets' => $content);
return id(new AphrontAjaxResponse())->setContent($content);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 5, 1:59 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
76021
Default Alt Text
ConpherenceParticipantController.php (955 B)

Event Timeline