Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F93461644
PhabricatorEditPage.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
Thu, Nov 28, 23:09
Size
973 B
Mime Type
text/x-php
Expires
Sat, Nov 30, 23:09 (2 d)
Engine
blob
Format
Raw Data
Handle
22644786
Attached To
rPH Phabricator
PhabricatorEditPage.php
View Options
<?php
final
class
PhabricatorEditPage
extends
Phobject
{
private
$key
;
private
$label
;
private
$fieldKeys
=
array
();
private
$viewURI
;
private
$isDefault
;
public
function
setKey
(
$key
)
{
$this
->
key
=
$key
;
return
$this
;
}
public
function
getKey
()
{
return
$this
->
key
;
}
public
function
setLabel
(
$label
)
{
$this
->
label
=
$label
;
return
$this
;
}
public
function
getLabel
()
{
return
$this
->
label
;
}
public
function
setFieldKeys
(
array
$field_keys
)
{
$this
->
fieldKeys
=
$field_keys
;
return
$this
;
}
public
function
getFieldKeys
()
{
return
$this
->
fieldKeys
;
}
public
function
setIsDefault
(
$is_default
)
{
$this
->
isDefault
=
$is_default
;
return
$this
;
}
public
function
getIsDefault
()
{
return
$this
->
isDefault
;
}
public
function
setViewURI
(
$view_uri
)
{
$this
->
viewURI
=
$view_uri
;
return
$this
;
}
public
function
getViewURI
()
{
return
$this
->
viewURI
;
}
}
Event Timeline
Log In to Comment