Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F120657421
DivinerLiveBook.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
Sun, Jul 6, 01:28
Size
1 KB
Mime Type
text/x-php
Expires
Tue, Jul 8, 01:28 (2 d)
Engine
blob
Format
Raw Data
Handle
27223540
Attached To
rPH Phabricator
DivinerLiveBook.php
View Options
<?php
final
class
DivinerLiveBook
extends
DivinerDAO
implements
PhabricatorPolicyInterface
{
protected
$phid
;
protected
$name
;
protected
$viewPolicy
;
protected
$configurationData
=
array
();
public
function
getConfiguration
()
{
return
array
(
self
::
CONFIG_AUX_PHID
=>
true
,
self
::
CONFIG_SERIALIZATION
=>
array
(
'configurationData'
=>
self
::
SERIALIZATION_JSON
,
),
)
+
parent
::
getConfiguration
();
}
public
function
getConfig
(
$key
,
$default
=
null
)
{
return
idx
(
$this
->
configurationData
,
$key
,
$default
);
}
public
function
setConfig
(
$key
,
$value
)
{
$this
->
configurationData
[
$key
]
=
$value
;
return
$this
;
}
public
function
generatePHID
()
{
return
PhabricatorPHID
::
generateNewPHID
(
DivinerPHIDTypeBook
::
TYPECONST
);
}
public
function
getTitle
()
{
return
$this
->
getConfig
(
'title'
,
$this
->
getName
());
}
public
function
getShortTitle
()
{
return
$this
->
getConfig
(
'short'
,
$this
->
getTitle
());
}
public
function
getGroupName
(
$group
)
{
$groups
=
$this
->
getConfig
(
'groups'
);
$spec
=
idx
(
$groups
,
$group
,
array
());
return
idx
(
$spec
,
'name'
,
$group
);
}
/* -( PhabricatorPolicyInterface )----------------------------------------- */
public
function
getCapabilities
()
{
return
array
(
PhabricatorPolicyCapability
::
CAN_VIEW
,
);
}
public
function
getPolicy
(
$capability
)
{
return
$this
->
viewPolicy
;
}
public
function
hasAutomaticCapability
(
$capability
,
PhabricatorUser
$viewer
)
{
return
false
;
}
public
function
describeAutomaticCapability
(
$capability
)
{
return
null
;
}
}
Event Timeline
Log In to Comment