Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F103771777
PhabricatorStandardPageView.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Mar 4, 16:24
Size
3 KB
Mime Type
text/x-php
Expires
Thu, Mar 6, 16:24 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24662374
Attached To
rPH Phabricator
PhabricatorStandardPageView.php
View Options
<?php
/*
* Copyright 2011 Facebook, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
class
PhabricatorStandardPageView
extends
AphrontPageView
{
private
$baseURI
;
private
$applicationName
;
private
$tabs
=
array
();
private
$selectedTab
;
private
$glyph
;
private
$bodyContent
;
private
$request
;
public
function
setRequest
(
$request
)
{
$this
->
request
=
$request
;
return
$this
;
}
public
function
getRequest
()
{
return
$this
->
request
;
}
public
function
setApplicationName
(
$application_name
)
{
$this
->
applicationName
=
$application_name
;
return
$this
;
}
public
function
getApplicationName
()
{
return
$this
->
applicationName
;
}
public
function
setBaseURI
(
$base_uri
)
{
$this
->
baseURI
=
$base_uri
;
return
$this
;
}
public
function
getBaseURI
()
{
return
$this
->
baseURI
;
}
public
function
setTabs
(
array
$tabs
,
$selected_tab
)
{
$this
->
tabs
=
$tabs
;
$this
->
selectedTab
=
$selected_tab
;
return
$this
;
}
public
function
getTitle
()
{
return
$this
->
getGlyph
().
' '
.
parent
::
getTitle
();
}
protected
function
willRenderPage
()
{
require_celerity_resource
(
'phabricator-core-css'
);
require_celerity_resource
(
'phabricator-core-buttons-css'
);
require_celerity_resource
(
'phabricator-standard-page-view'
);
require_celerity_resource
(
'javelin-lib-dev'
);
$this
->
bodyContent
=
$this
->
renderChildren
();
}
protected
function
getHead
()
{
$response
=
CelerityAPI
::
getStaticResourceResponse
();
return
$response
->
renderResourcesOfType
(
'css'
).
'<script type="text/javascript">window.__DEV__=1;</script>'
.
'<script type="text/javascript" src="/rsrc/js/javelin/init.dev.js">'
.
'</script>'
;
}
public
function
setGlyph
(
$glyph
)
{
$this
->
glyph
=
$glyph
;
return
$this
;
}
public
function
getGlyph
()
{
return
$this
->
glyph
;
}
protected
function
getBody
()
{
$tabs
=
array
();
foreach
(
$this
->
tabs
as
$name
=>
$tab
)
{
$tabs
[]
=
phutil_render_tag
(
'a'
,
array
(
'href'
=>
idx
(
$tab
,
'href'
),
'class'
=>
(
$name
==
$this
->
selectedTab
)
?
'phabricator-selected-tab'
:
null
,
),
phutil_escape_html
(
idx
(
$tab
,
'name'
)));
}
$tabs
=
implode
(
''
,
$tabs
);
if
(
$tabs
)
{
$tabs
=
'<span class="phabricator-head-tabs">'
.
$tabs
.
'</span>'
;
}
$login_stuff
=
null
;
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
if
(
$user
->
getPHID
())
{
$login_stuff
=
'Logged in as '
.
phutil_escape_html
(
$user
->
getUsername
());
}
return
'<div class="phabricator-standard-page">'
.
'<div class="phabricator-standard-header">'
.
'<div class="phabricator-login-details">'
.
$login_stuff
.
'</div>'
.
'<a href="/">Phabricator</a> '
.
phutil_render_tag
(
'a'
,
array
(
'href'
=>
$this
->
getBaseURI
(),
'class'
=>
'phabricator-head-appname'
,
),
phutil_escape_html
(
$this
->
getApplicationName
())).
$tabs
.
'</div>'
.
$this
->
bodyContent
.
'<div style="clear: both;"></div>'
.
'</div>'
;
}
protected
function
getTail
()
{
$response
=
CelerityAPI
::
getStaticResourceResponse
();
return
$response
->
renderResourcesOfType
(
'js'
).
$response
->
renderHTMLFooter
();
}
}
Event Timeline
Log In to Comment