mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-17 02:01:13 +01:00
ba7723d905
Summary: Adds feed, email, notifications, comments, partial editing, subscriptions, enable/disable, flags and crumbs to Macro. Test Plan: {F26839} {F26840} {F26841} {F26842} {F26843} {F26844} {F26845} Reviewers: vrana, btrahan, chad Reviewed By: vrana CC: aran Maniphest Tasks: T2157, T175, T2104 Differential Revision: https://secure.phabricator.com/D4141
56 lines
1.1 KiB
PHP
56 lines
1.1 KiB
PHP
<?php
|
|
|
|
final class PhabricatorHeaderView extends AphrontView {
|
|
|
|
private $objectName;
|
|
private $header;
|
|
private $tags = array();
|
|
|
|
public function setHeader($header) {
|
|
$this->header = $header;
|
|
return $this;
|
|
}
|
|
|
|
public function setObjectName($object_name) {
|
|
$this->objectName = $object_name;
|
|
return $this;
|
|
}
|
|
|
|
public function addTag(PhabricatorTagView $tag) {
|
|
$this->tags[] = $tag;
|
|
return $this;
|
|
}
|
|
|
|
public function render() {
|
|
require_celerity_resource('phabricator-header-view-css');
|
|
|
|
$header = phutil_escape_html($this->header);
|
|
|
|
if ($this->objectName) {
|
|
$header = phutil_render_tag(
|
|
'a',
|
|
array(
|
|
'href' => '/'.$this->objectName,
|
|
),
|
|
phutil_escape_html($this->objectName)).' '.$header;
|
|
}
|
|
|
|
if ($this->tags) {
|
|
$header .= phutil_render_tag(
|
|
'div',
|
|
array(
|
|
'class' => 'phabricator-header-tags',
|
|
),
|
|
self::renderSingleView($this->tags));
|
|
}
|
|
|
|
return phutil_render_tag(
|
|
'h1',
|
|
array(
|
|
'class' => 'phabricator-header-view',
|
|
),
|
|
$header);
|
|
}
|
|
|
|
|
|
}
|