Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102726776
PhameBlogSkin.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, Feb 23, 13:48
Size
903 B
Mime Type
text/x-php
Expires
Tue, Feb 25, 13:48 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24378320
Attached To
rPH Phabricator
PhameBlogSkin.php
View Options
<?php
/**
* @group phame
*/
abstract
class
PhameBlogSkin
extends
PhabricatorController
{
private
$blog
;
private
$baseURI
;
private
$preview
;
private
$specification
;
public
function
setSpecification
(
PhameSkinSpecification
$specification
)
{
$this
->
specification
=
$specification
;
return
$this
;
}
public
function
getSpecification
()
{
return
$this
->
specification
;
}
public
function
setPreview
(
$preview
)
{
$this
->
preview
=
$preview
;
return
$this
;
}
public
function
getPreview
()
{
return
$this
->
preview
;
}
final
public
function
setBaseURI
(
$base_uri
)
{
$this
->
baseURI
=
$base_uri
;
return
$this
;
}
final
public
function
getURI
(
$path
)
{
return
$this
->
baseURI
.
$path
;
}
final
public
function
setBlog
(
PhameBlog
$blog
)
{
$this
->
blog
=
$blog
;
return
$this
;
}
final
public
function
getBlog
()
{
return
$this
->
blog
;
}
}
Event Timeline
Log In to Comment