Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93112503
PhabricatorProfileMenuEditEngine.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, Nov 26, 07:31
Size
3 KB
Mime Type
text/x-php
Expires
Thu, Nov 28, 07:31 (2 d)
Engine
blob
Format
Raw Data
Handle
22574898
Attached To
rPH Phabricator
PhabricatorProfileMenuEditEngine.php
View Options
<?php
final
class
PhabricatorProfileMenuEditEngine
extends
PhabricatorEditEngine
{
const
ENGINECONST
=
'search.profilemenu'
;
private
$menuEngine
;
private
$profileObject
;
private
$customPHID
;
private
$newMenuItemConfiguration
;
private
$isBuiltin
;
public
function
isEngineConfigurable
()
{
return
false
;
}
public
function
setMenuEngine
(
PhabricatorProfileMenuEngine
$engine
)
{
$this
->
menuEngine
=
$engine
;
return
$this
;
}
public
function
getMenuEngine
()
{
return
$this
->
menuEngine
;
}
public
function
setProfileObject
(
$profile_object
)
{
$this
->
profileObject
=
$profile_object
;
return
$this
;
}
public
function
getProfileObject
()
{
return
$this
->
profileObject
;
}
public
function
setCustomPHID
(
$custom_phid
)
{
$this
->
customPHID
=
$custom_phid
;
return
$this
;
}
public
function
getCustomPHID
()
{
return
$this
->
customPHID
;
}
public
function
setNewMenuItemConfiguration
(
PhabricatorProfileMenuItemConfiguration
$configuration
)
{
$this
->
newMenuItemConfiguration
=
$configuration
;
return
$this
;
}
public
function
getNewMenuItemConfiguration
()
{
return
$this
->
newMenuItemConfiguration
;
}
public
function
setIsBuiltin
(
$is_builtin
)
{
$this
->
isBuiltin
=
$is_builtin
;
return
$this
;
}
public
function
getIsBuiltin
()
{
return
$this
->
isBuiltin
;
}
public
function
getEngineName
()
{
return
pht
(
'Profile Menu Items'
);
}
public
function
getSummaryHeader
()
{
return
pht
(
'Edit Profile Menu Item Configurations'
);
}
public
function
getSummaryText
()
{
return
pht
(
'This engine is used to modify menu items on profiles.'
);
}
public
function
getEngineApplicationClass
()
{
return
'PhabricatorSearchApplication'
;
}
protected
function
newEditableObject
()
{
if
(!
$this
->
newMenuItemConfiguration
)
{
throw
new
Exception
(
pht
(
'Profile menu items can not be generated without an '
.
'object context.'
));
}
return
clone
$this
->
newMenuItemConfiguration
;
}
protected
function
newObjectQuery
()
{
return
id
(
new
PhabricatorProfileMenuItemConfigurationQuery
());
}
protected
function
getObjectCreateTitleText
(
$object
)
{
if
(
$this
->
getIsBuiltin
())
{
return
pht
(
'Edit Builtin Item'
);
}
else
{
return
pht
(
'Create Menu Item'
);
}
}
protected
function
getObjectCreateButtonText
(
$object
)
{
if
(
$this
->
getIsBuiltin
())
{
return
pht
(
'Save Changes'
);
}
else
{
return
pht
(
'Create Menu Item'
);
}
}
protected
function
getObjectEditTitleText
(
$object
)
{
return
pht
(
'Edit Menu Item: %s'
,
$object
->
getDisplayName
());
}
protected
function
getObjectEditShortText
(
$object
)
{
return
pht
(
'Edit Menu Item'
);
}
protected
function
getObjectCreateShortText
()
{
return
pht
(
'Edit Menu Item'
);
}
protected
function
getObjectName
()
{
return
pht
(
'Menu Item'
);
}
protected
function
getObjectCreateCancelURI
(
$object
)
{
return
$this
->
getMenuEngine
()->
getConfigureURI
();
}
protected
function
getObjectViewURI
(
$object
)
{
return
$this
->
getMenuEngine
()->
getConfigureURI
();
}
protected
function
buildCustomEditFields
(
$object
)
{
$item
=
$object
->
getMenuItem
();
$fields
=
$item
->
buildEditEngineFields
(
$object
);
$type_property
=
PhabricatorProfileMenuItemConfigurationTransaction
::
TYPE_PROPERTY
;
foreach
(
$fields
as
$field
)
{
$field
->
setTransactionType
(
$type_property
)
->
setMetadataValue
(
'property.key'
,
$field
->
getKey
());
}
return
$fields
;
}
}
Event Timeline
Log In to Comment