Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100683025
PhabricatorGuideItemView.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
Sat, Feb 1, 20:32
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Feb 3, 20:32 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24012284
Attached To
rPH Phabricator
PhabricatorGuideItemView.php
View Options
<?php
final
class
PhabricatorGuideItemView
extends
Phobject
{
private
$title
;
private
$href
;
private
$description
;
private
$icon
;
private
$iconBackground
;
private
$skipHref
;
public
function
setTitle
(
$title
)
{
$this
->
title
=
$title
;
return
$this
;
}
public
function
setDescription
(
$description
)
{
$this
->
description
=
$description
;
return
$this
;
}
public
function
setHref
(
$href
)
{
$this
->
href
=
$href
;
return
$this
;
}
public
function
setIcon
(
$icon
)
{
$this
->
icon
=
$icon
;
return
$this
;
}
public
function
setIconBackground
(
$background
)
{
$this
->
iconBackground
=
$background
;
return
$this
;
}
public
function
setSkipHref
(
$href
)
{
$this
->
skipHref
=
$href
;
return
$this
;
}
public
function
getTitle
()
{
return
$this
->
title
;
}
public
function
getDescription
()
{
return
$this
->
description
;
}
public
function
getHref
()
{
return
$this
->
href
;
}
public
function
getIcon
()
{
return
$this
->
icon
;
}
public
function
getIconBackground
()
{
return
$this
->
iconBackground
;
}
public
function
getSkipHref
()
{
return
$this
->
skipHref
;
}
}
Event Timeline
Log In to Comment