-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
link.php
95 lines (88 loc) · 2.54 KB
/
link.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/**
* link
*/
if (!defined('__TYPECHO_ROOT_DIR__')) exit;
$db = Typecho_Db::get();
$users = $db->fetchALL($db->select('name','screenName','url','mail','group','introduction')->from('table.users')->where('url <> ?', ''));
function linkCard($user){
$url = $user['url'];
$name = $user['screenName'];
$intro = $user['introduction'];
$avatar = $user['avatar'];
echo '
<a href="'.$url.'">
<blockquote class="card-meta">
<img src="'.$avatar.'">
<span>
<p>'.$name.'</p>
<p>'.$intro.'</p>
</span>
</blockquote>
</a>
';
}
$this->need('_layouts/default-0.php'); ?>
<article class="card-link">
<?php
$options = Typecho_Widget::widget('Widget_Options')->plugin('MorechoFriends');
$group = array('administrator', 'editor', 'contributor', 'subscriber');
$groupName = array($options->groupTitleA, $options->groupTitleE, $options->groupTitleC, $options->groupTitleS);
for ($i = 0; $i < 4; $i++) if (!empty($groupName[$i])) foreach ($users as $user) if ($user['group'] === $group[$i]) {
echo '<h3>'.$groupName[$i].'</h3>';
foreach ($users as $user)if ($user['group'] === $group[$i]) {
if (empty($user['screenName'])) $user['screenName'] = $user['name'];
$user['introduction'] = Typecho_Common::subStr(Typecho_Common::stripTags(Widget_Abstract_Contents::markdown($user['introduction'])), 0, 14, '...');
$user['avatar'] = Typecho_Common::gravatarUrl($user['mail'], 144, $this->options->commentsAvatarRating, 'mp', $this->request->isSecure());
linkCard($user);
}
break;
}
?>
</article>
<style>
.card-link{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: center;
margin-top: 5rem;
padding: 0;
}
.card-link h3{
width: 100%;
}
.card-link h3:before{
display: none;
}
.card-link > a{
padding: 0 .25rem;
}
.card-link blockquote.card-meta{
height: 65px;
transition: all .3s ease 0s;
box-shadow: 0 0.25rem .5rem rgba(0, 0, 0, 0.1);
}
.card-link blockquote.card-meta:hover{
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.card-link blockquote.card-meta p,
.card-link blockquote.card-meta a {
color: rgba(0,0,0,.7);
font-size: .6rem;
font-weight: bold;
}
.card-link blockquote.card-meta p:first-child{
font-size: 1rem;
}
.card-link blockquote.card-meta span:last-child{
max-width: unset !important;
width: 65px;
}
@media (max-width: 767px) {
.card-link > a{
width: 100%;
}
}
</style>
<?php $this->need('_layouts/default-1.php'); ?>