Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F454306
ManiphestController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
ManiphestController.php
View Options
<?php
/*
* Copyright 2012 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.
*/
/**
* @group maniphest
*/
abstract
class
ManiphestController
extends
PhabricatorController
{
private
$defaultQuery
;
public
function
buildStandardPageResponse
(
$view
,
array
$data
)
{
$page
=
$this
->
buildStandardPageView
();
$page
->
setApplicationName
(
'Maniphest'
);
$page
->
setBaseURI
(
'/maniphest/'
);
$page
->
setTitle
(
idx
(
$data
,
'title'
));
$page
->
setGlyph
(
"
\x
E2
\x
9A
\x
93"
);
$page
->
appendPageObjects
(
idx
(
$data
,
'pageObjects'
,
array
()));
$page
->
appendChild
(
$view
);
$page
->
setSearchDefaultScope
(
PhabricatorSearchScope
::
SCOPE_OPEN_TASKS
);
$response
=
new
AphrontWebpageResponse
();
return
$response
->
setContent
(
$page
->
render
());
}
protected
function
buildBaseSideNav
()
{
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
'/maniphest/view/'
));
$request
=
$this
->
getRequest
();
$user
=
$request
->
getUser
();
$custom
=
id
(
new
ManiphestSavedQuery
())->
loadAllWhere
(
'userPHID = %s ORDER BY isDefault DESC, name ASC'
,
$user
->
getPHID
());
if
(
$custom
)
{
$nav
->
addLabel
(
'Saved Queries'
);
foreach
(
$custom
as
$query
)
{
if
(
$query
->
getIsDefault
())
{
$this
->
defaultQuery
=
$query
;
}
$nav
->
addFilter
(
'Q:'
.
$query
->
getQueryKey
(),
$query
->
getName
(),
'/maniphest/view/custom/?key='
.
$query
->
getQueryKey
());
}
$nav
->
addFilter
(
'saved'
,
'Edit...'
,
'/maniphest/custom/'
);
$nav
->
addSpacer
();
}
$nav
->
addLabel
(
'User Tasks'
);
$nav
->
addFilter
(
'action'
,
'Assigned'
);
$nav
->
addFilter
(
'created'
,
'Created'
);
$nav
->
addFilter
(
'subscribed'
,
'Subscribed'
);
$nav
->
addFilter
(
'triage'
,
'Need Triage'
);
$nav
->
addSpacer
();
$nav
->
addLabel
(
'User Projects'
);
$nav
->
addFilter
(
'projecttriage'
,
'Need Triage'
);
$nav
->
addFilter
(
'projectall'
,
'All Tasks'
);
$nav
->
addSpacer
();
$nav
->
addLabel
(
'All Tasks'
);
$nav
->
addFilter
(
'alltriage'
,
'Need Triage'
);
$nav
->
addFilter
(
'all'
,
'All Tasks'
);
$nav
->
addSpacer
();
$nav
->
addLabel
(
'Custom'
);
$nav
->
addFilter
(
'custom'
,
'Custom Query'
);
$nav
->
addSpacer
();
$nav
->
addLabel
(
'Reports'
);
$nav
->
addFilter
(
'report'
,
'Reports'
,
'/maniphest/report/'
);
return
$nav
;
}
protected
function
getDefaultQuery
()
{
return
$this
->
defaultQuery
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 5, 4:40 AM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
69449
Default Alt Text
ManiphestController.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment