Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F467744
AlmanacProperty.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
AlmanacProperty.php
View Options
<?php
final
class
AlmanacProperty
extends
AlmanacDAO
implements
PhabricatorPolicyInterface
{
protected
$objectPHID
;
protected
$fieldIndex
;
protected
$fieldName
;
protected
$fieldValue
;
private
$object
=
self
::
ATTACHABLE
;
protected
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_TIMESTAMPS
=>
false
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'fieldValue'
=>
self
::
SERIALIZATION_JSON
,
),
self
::
CONFIG_COLUMN_SCHEMA
=>
array
(
'fieldIndex'
=>
'bytes12'
,
'fieldName'
=>
'text128'
,
),
self
::
CONFIG_KEY_SCHEMA
=>
array
(
'objectPHID'
=>
array
(
'columns'
=>
array
(
'objectPHID'
,
'fieldIndex'
),
'unique'
=>
true
,
),
),
)
+
parent
::
getConfiguration
();
}
public
function
getObject
()
{
return
$this
->
assertAttached
(
$this
->
object
);
}
public
function
attachObject
(
PhabricatorLiskDAO
$object
)
{
$this
->
object
=
$object
;
return
$this
;
}
public
static
function
newPropertyUpdateTransactions
(
AlmanacPropertyInterface
$object
,
array
$properties
,
$only_builtins
=
false
)
{
$template
=
$object
->
getApplicationTransactionTemplate
();
$builtins
=
$object
->
getAlmanacPropertyFieldSpecifications
();
$xactions
=
array
();
foreach
(
$properties
as
$name
=>
$property
)
{
if
(
$only_builtins
&&
empty
(
$builtins
[
$name
]))
{
continue
;
}
$xactions
[]
=
id
(
clone
$template
)
->
setTransactionType
(
$object
->
getAlmanacPropertySetTransactionType
())
->
setMetadataValue
(
'almanac.property'
,
$name
)
->
setNewValue
(
$property
);
}
return
$xactions
;
}
public
static
function
newPropertyRemoveTransactions
(
AlmanacPropertyInterface
$object
,
array
$properties
)
{
$template
=
$object
->
getApplicationTransactionTemplate
();
$xactions
=
array
();
foreach
(
$properties
as
$property
)
{
$xactions
[]
=
id
(
clone
$template
)
->
setTransactionType
(
$object
->
getAlmanacPropertyDeleteTransactionType
())
->
setMetadataValue
(
'almanac.property'
,
$property
)
->
setNewValue
(
null
);
}
return
$xactions
;
}
public
function
save
()
{
$hash
=
PhabricatorHash
::
digestForIndex
(
$this
->
getFieldName
());
$this
->
setFieldIndex
(
$hash
);
return
parent
::
save
();
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
PhabricatorPolicyCapability
::
CAN_EDIT
,
);
}
public
function
getPolicy
(
$capability
)
{
return
$this
->
getObject
()->
getPolicy
(
$capability
);
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
$this
->
getObject
()->
hasAutomaticCapability
(
$capability
,
$viewer
);
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
pht
(
'Properties inherit the policies of their object.'
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, May 6, 3:47 AM (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
80008
Default Alt Text
AlmanacProperty.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment