Page MenuHomePhorge

PhabricatorXHProfProfileView.php
No OneTemporary

Size
542 B
Referenced Files
None
Subscribers
None

PhabricatorXHProfProfileView.php

<?php
abstract class PhabricatorXHProfProfileView extends AphrontView {
private $baseURI;
private $isFramed;
public function setIsFramed($is_framed) {
$this->isFramed = $is_framed;
return $this;
}
public function setBaseURI($uri) {
$this->baseURI = $uri;
return $this;
}
protected function renderSymbolLink($symbol) {
return phutil_tag(
'a',
array(
'href' => $this->baseURI.'?symbol='.$symbol,
'target' => $this->isFramed ? '_top' : null,
),
$symbol);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 12, 1:56 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
111141
Default Alt Text
PhabricatorXHProfProfileView.php (542 B)

Event Timeline