Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2988969
AlmanacDeviceEditEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
AlmanacDeviceEditEngine.php
View Options
<?php
final
class
AlmanacDeviceEditEngine
extends
PhabricatorEditEngine
{
const
ENGINECONST
=
'almanac.device'
;
public
function
isEngineConfigurable
(
)
{
return
false
;
}
public
function
getEngineName
(
)
{
return
pht
(
'Almanac Devices'
)
;
}
public
function
getSummaryHeader
(
)
{
return
pht
(
'Edit Almanac Device Configurations'
)
;
}
public
function
getSummaryText
(
)
{
return
pht
(
'This engine is used to edit Almanac devices.'
)
;
}
public
function
getEngineApplicationClass
(
)
{
return
PhabricatorAlmanacApplication
::
class
;
}
protected
function
newEditableObject
(
)
{
return
AlmanacDevice
::
initializeNewDevice
(
)
;
}
protected
function
newObjectQuery
(
)
{
return
id
(
new
AlmanacDeviceQuery
(
)
)
->
needProperties
(
true
)
;
}
protected
function
getObjectCreateTitleText
(
$object
)
{
return
pht
(
'Create Device'
)
;
}
protected
function
getObjectCreateButtonText
(
$object
)
{
return
pht
(
'Create Device'
)
;
}
protected
function
getObjectEditTitleText
(
$object
)
{
return
pht
(
'Edit Device: %s'
,
$object
->
getName
(
)
)
;
}
protected
function
getObjectEditShortText
(
$object
)
{
return
pht
(
'Edit Device'
)
;
}
protected
function
getObjectCreateShortText
(
)
{
return
pht
(
'Create Device'
)
;
}
protected
function
getObjectName
(
)
{
return
pht
(
'Device'
)
;
}
protected
function
getEditorURI
(
)
{
return
'/almanac/device/edit/'
;
}
protected
function
getObjectCreateCancelURI
(
$object
)
{
return
'/almanac/device/'
;
}
protected
function
getObjectViewURI
(
$object
)
{
return
$object
->
getURI
(
)
;
}
protected
function
getCreateNewObjectPolicy
(
)
{
return
$this
->
getApplication
(
)
->
getPolicy
(
AlmanacCreateDevicesCapability
::
CAPABILITY
)
;
}
protected
function
buildCustomEditFields
(
$object
)
{
$status_map
=
$this
->
getDeviceStatusMap
(
$object
)
;
return
array
(
id
(
new
PhabricatorTextEditField
(
)
)
->
setKey
(
'name'
)
->
setLabel
(
pht
(
'Name'
)
)
->
setDescription
(
pht
(
'Name of the device.'
)
)
->
setTransactionType
(
AlmanacDeviceNameTransaction
::
TRANSACTIONTYPE
)
->
setIsRequired
(
true
)
->
setValue
(
$object
->
getName
(
)
)
,
id
(
new
PhabricatorSelectEditField
(
)
)
->
setKey
(
'status'
)
->
setLabel
(
pht
(
'Status'
)
)
->
setDescription
(
pht
(
'Device status.'
)
)
->
setTransactionType
(
AlmanacDeviceStatusTransaction
::
TRANSACTIONTYPE
)
->
setOptions
(
$status_map
)
->
setValue
(
$object
->
getStatus
(
)
)
,
)
;
}
private
function
getDeviceStatusMap
(
AlmanacDevice
$device
)
{
$status_map
=
AlmanacDeviceStatus
::
getStatusMap
(
)
;
// If the device currently has an unknown status, add it to the list for
// the dropdown.
$status_value
=
$device
->
getStatus
(
)
;
if
(
!
isset
(
$status_map
[
$status_value
]
)
)
{
$status_map
=
array
(
$status_value
=>
AlmanacDeviceStatus
::
newStatusFromValue
(
$status_value
)
,
)
+
$status_map
;
}
$status_map
=
mpull
(
$status_map
,
'getName'
)
;
return
$status_map
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, Feb 22, 17:27 (5 h, 57 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1111049
Default Alt Text
AlmanacDeviceEditEngine.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment