Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96169625
PhabricatorConfigOption.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
Mon, Dec 23, 09:58
Size
2 KB
Mime Type
text/x-php
Expires
Wed, Dec 25, 09:58 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23129382
Attached To
rPH Phabricator
PhabricatorConfigOption.php
View Options
<?php
final
class
PhabricatorConfigOption
extends
Phobject
implements
PhabricatorMarkupInterface
{
private
$key
;
private
$default
;
private
$summary
;
private
$description
;
private
$type
;
private
$options
;
private
$group
;
private
$examples
;
public
function
addExample
(
$value
,
$description
)
{
$this
->
examples
[]
=
array
(
$value
,
$description
);
return
$this
;
}
public
function
getExamples
()
{
return
$this
->
examples
;
}
public
function
setGroup
(
PhabricatorApplicationConfigOptions
$group
)
{
$this
->
group
=
$group
;
return
$this
;
}
public
function
getGroup
()
{
return
$this
->
group
;
}
public
function
setOptions
(
array
$options
)
{
$this
->
options
=
$options
;
return
$this
;
}
public
function
getOptions
()
{
return
$this
->
options
;
}
public
function
setKey
(
$key
)
{
$this
->
key
=
$key
;
return
$this
;
}
public
function
getKey
()
{
return
$this
->
key
;
}
public
function
setDefault
(
$default
)
{
$this
->
default
=
$default
;
return
$this
;
}
public
function
getDefault
()
{
return
$this
->
default
;
}
public
function
setSummary
(
$summary
)
{
$this
->
summary
=
$summary
;
return
$this
;
}
public
function
getSummary
()
{
if
(
empty
(
$this
->
summary
))
{
return
$this
->
getDescription
();
}
return
$this
->
summary
;
}
public
function
setDescription
(
$description
)
{
$this
->
description
=
$description
;
return
$this
;
}
public
function
getDescription
()
{
return
$this
->
description
;
}
public
function
setType
(
$type
)
{
$this
->
type
=
$type
;
return
$this
;
}
public
function
getType
()
{
return
$this
->
type
;
}
/* -( PhabricatorMarkupInterface )----------------------------------------- */
public
function
getMarkupFieldKey
(
$field
)
{
return
$this
->
getKey
().
':'
.
$field
;
}
public
function
newMarkupEngine
(
$field
)
{
return
PhabricatorMarkupEngine
::
newMarkupEngine
(
array
());
}
public
function
getMarkupText
(
$field
)
{
return
$this
->
getDescription
();
}
public
function
didMarkupText
(
$field
,
$output
,
PhutilMarkupEngine
$engine
)
{
return
$output
;
}
public
function
shouldUseMarkupCache
(
$field
)
{
return
false
;
}
}
Event Timeline
Log In to Comment