Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92361263
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
Tue, Nov 19, 16:56
Size
903 B
Mime Type
text/x-php
Expires
Thu, Nov 21, 16:56 (2 d)
Engine
blob
Format
Raw Data
Handle
22430707
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