Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106114004
DiffusionRepositoryManagementPanel.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
Sat, Mar 22, 14:16
Size
3 KB
Mime Type
text/x-php
Expires
Mon, Mar 24, 14:16 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25115950
Attached To
rPH Phabricator
DiffusionRepositoryManagementPanel.php
View Options
<?php
abstract
class
DiffusionRepositoryManagementPanel
extends
Phobject
{
private
$viewer
;
private
$repository
;
private
$controller
;
final
public
function
setViewer
(
PhabricatorUser
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
final
public
function
getViewer
()
{
return
$this
->
viewer
;
}
final
public
function
setRepository
(
PhabricatorRepository
$repository
)
{
$this
->
repository
=
$repository
;
return
$this
;
}
final
public
function
getRepository
()
{
return
$this
->
repository
;
}
final
public
function
getRequest
()
{
return
$this
->
controller
->
getRequest
();
}
final
public
function
setController
(
PhabricatorController
$controller
)
{
$this
->
controller
=
$controller
;
return
$this
;
}
final
public
function
getManagementPanelKey
()
{
return
$this
->
getPhobjectClassConstant
(
'PANELKEY'
);
}
abstract
public
function
getManagementPanelLabel
();
abstract
public
function
getManagementPanelOrder
();
abstract
public
function
buildManagementPanelContent
();
abstract
public
function
buildManagementPanelCurtain
();
public
function
getManagementPanelIcon
()
{
return
'fa-pencil'
;
}
protected
function
buildManagementPanelActions
()
{
return
array
();
}
public
function
shouldEnableForRepository
(
PhabricatorRepository
$repository
)
{
return
true
;
}
public
static
function
getAllPanels
()
{
return
id
(
new
PhutilClassMapQuery
())
->
setAncestorClass
(
__CLASS__
)
->
setUniqueMethod
(
'getManagementPanelKey'
)
->
setSortMethod
(
'getManagementPanelOrder'
);
// C4science customization
if
(!
$viewer
->
isOmnipotent
())
{
$class_map
->
setFilterMethod
(
'allowAccess'
);
}
return
$class_map
->
execute
();
}
final
protected
function
newBox
(
$header_text
,
$body
,
$button
=
array
())
{
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$header_text
);
foreach
(
$button
as
$link
)
{
$header
->
addActionLink
(
$link
);
}
$view
=
id
(
new
PHUIObjectBoxView
())
->
setHeader
(
$header
)
->
setBackground
(
PHUIObjectBoxView
::
WHITE_CONFIG
)
->
appendChild
(
$body
);
return
$view
;
}
final
protected
function
newTimeline
()
{
return
$this
->
controller
->
newTimeline
(
$this
->
getRepository
());
}
final
public
function
getPanelURI
()
{
$repository
=
$this
->
getRepository
();
$key
=
$this
->
getManagementPanelKey
();
return
$repository
->
getPathURI
(
"manage/{$key}/"
);
}
final
public
function
newEditEnginePage
()
{
$field_keys
=
$this
->
getEditEngineFieldKeys
();
if
(!
$field_keys
)
{
return
null
;
}
$key
=
$this
->
getManagementPanelKey
();
$label
=
$this
->
getManagementPanelLabel
();
$panel_uri
=
$this
->
getPanelURI
();
return
id
(
new
PhabricatorEditPage
())
->
setKey
(
$key
)
->
setLabel
(
$label
)
->
setViewURI
(
$panel_uri
)
->
setFieldKeys
(
$field_keys
);
}
protected
function
getEditEngineFieldKeys
()
{
return
array
();
}
protected
function
getEditPageURI
(
$page
=
null
)
{
if
(
$page
===
null
)
{
$page
=
$this
->
getManagementPanelKey
();
}
$repository
=
$this
->
getRepository
();
$id
=
$repository
->
getID
();
return
"/diffusion/edit/{$id}/page/{$page}/"
;
}
public
function
getPanelNavigationURI
()
{
return
$this
->
getPanelURI
();
}
}
Event Timeline
Log In to Comment