3 final class PhabricatorContentSourceView
extends AphrontView
{
5 private $contentSource;
7 public function setContentSource(PhabricatorContentSource
$content_source) {
8 $this->contentSource
= $content_source;
12 public function getSourceName() {
13 return $this->contentSource
->getSourceName();
16 public function render() {
17 require_celerity_resource('phabricator-content-source-view-css');
19 $name = $this->getSourceName();
27 'class' => 'phabricator-content-source-view',
29 pht('Via %s', $name));