mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 00:18:21 +02:00
Remove setObjectName from PHUIHeaderView
Summary: This isn't used much (once?) and it's not needed. Fixes T8876 Test Plan: Grep for setObjectName and see if its PHUIHeaderView. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8876 Differential Revision: https://secure.phabricator.com/D13645
This commit is contained in:
parent
259a412fcd
commit
f53128cab4
2 changed files with 0 additions and 19 deletions
src
|
@ -45,7 +45,6 @@ final class FundInitiativeViewController
|
||||||
$initiative->getStatus());
|
$initiative->getStatus());
|
||||||
|
|
||||||
$header = id(new PHUIHeaderView())
|
$header = id(new PHUIHeaderView())
|
||||||
->setObjectName($initiative->getMonogram())
|
|
||||||
->setHeader($initiative->getName())
|
->setHeader($initiative->getName())
|
||||||
->setUser($viewer)
|
->setUser($viewer)
|
||||||
->setPolicyObject($initiative)
|
->setPolicyObject($initiative)
|
||||||
|
|
|
@ -4,7 +4,6 @@ final class PHUIHeaderView extends AphrontTagView {
|
||||||
|
|
||||||
const PROPERTY_STATUS = 1;
|
const PROPERTY_STATUS = 1;
|
||||||
|
|
||||||
private $objectName;
|
|
||||||
private $header;
|
private $header;
|
||||||
private $tags = array();
|
private $tags = array();
|
||||||
private $image;
|
private $image;
|
||||||
|
@ -27,11 +26,6 @@ final class PHUIHeaderView extends AphrontTagView {
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function setObjectName($object_name) {
|
|
||||||
$this->objectName = $object_name;
|
|
||||||
return $this;
|
|
||||||
}
|
|
||||||
|
|
||||||
public function setNoBackground($nada) {
|
public function setNoBackground($nada) {
|
||||||
$this->noBackground = $nada;
|
$this->noBackground = $nada;
|
||||||
return $this;
|
return $this;
|
||||||
|
@ -193,18 +187,6 @@ final class PHUIHeaderView extends AphrontTagView {
|
||||||
->setObject($this->policyObject);
|
->setObject($this->policyObject);
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->objectName) {
|
|
||||||
$left[] = array(
|
|
||||||
phutil_tag(
|
|
||||||
'a',
|
|
||||||
array(
|
|
||||||
'href' => '/'.$this->objectName,
|
|
||||||
),
|
|
||||||
$this->objectName),
|
|
||||||
' ',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($this->actionLinks) {
|
if ($this->actionLinks) {
|
||||||
$actions = array();
|
$actions = array();
|
||||||
foreach ($this->actionLinks as $button) {
|
foreach ($this->actionLinks as $button) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue