Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106702343
PhameBlogListView.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, Mar 30, 09:10
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Apr 1, 09:10 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
25256569
Attached To
rPH Phabricator
PhameBlogListView.php
View Options
<?php
final
class
PhameBlogListView
extends
AphrontTagView
{
private
$blogs
;
private
$viewer
;
public
function
setBlogs
(
$blogs
)
{
assert_instances_of
(
$blogs
,
'PhameBlog'
);
$this
->
blogs
=
$blogs
;
return
$this
;
}
public
function
setViewer
(
$viewer
)
{
$this
->
viewer
=
$viewer
;
return
$this
;
}
protected
function
getTagAttributes
()
{
$classes
=
array
();
$classes
[]
=
'phame-blog-list'
;
return
array
(
'class'
=>
implode
(
' '
,
$classes
));
}
protected
function
getTagContent
()
{
require_celerity_resource
(
'phame-css'
);
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
$list
=
array
();
foreach
(
$this
->
blogs
as
$blog
)
{
$image_uri
=
$blog
->
getProfileImageURI
();
$image
=
phutil_tag
(
'a'
,
array
(
'class'
=>
'phame-blog-list-image'
,
'style'
=>
'background-image: url('
.
$image_uri
.
');'
,
'href'
=>
$blog
->
getViewURI
(),
));
$title
=
phutil_tag
(
'a'
,
array
(
'class'
=>
'phame-blog-list-title'
,
'href'
=>
$blog
->
getViewURI
(),
),
$blog
->
getName
());
$icon
=
id
(
new
PHUIIconView
())
->
setIconFont
(
'fa-plus-square'
)
->
addClass
(
'phame-blog-list-icon'
);
$add_new
=
phutil_tag
(
'a'
,
array
(
'href'
=>
'/phame/post/edit/?blog='
.
$blog
->
getID
(),
'class'
=>
'phame-blog-list-new-post'
,
'sigil'
=>
'has-tooltip'
,
'meta'
=>
array
(
'tip'
=>
pht
(
'New Post'
)),
),
$icon
);
$list
[]
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phame-blog-list-item'
,
),
array
(
$image
,
$title
,
$add_new
,
));
}
if
(
empty
(
$list
))
{
$list
=
phutil_tag
(
'a'
,
array
(
'href'
=>
'/phame/blog/new/'
,
),
pht
(
'Create a Blog'
));
}
$header
=
phutil_tag
(
'h4'
,
array
(
'class'
=>
'phame-blog-list-header'
,
),
phutil_tag
(
'a'
,
array
(
'href'
=>
'/phame/blog/'
,
),
pht
(
'Blogs'
)));
return
array
(
$header
,
$list
);
}
}
Event Timeline
Log In to Comment