-
Notifications
You must be signed in to change notification settings - Fork 1
/
fa.inc.php
177 lines (161 loc) · 5.72 KB
/
fa.inc.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
<?php
/**
* Font Awesomeのアイコンを表示するプラグイン
*
* v5.15.3フリー版 https://fontawesome.com/v5.15/icons?d=gallery&p=2&m=free
*
* @version 1.4
* @author kanateko
* @link https://jpngamerswiki.com/?f51cd63681
* @license https://www.gnu.org/licenses/gpl-3.0.html GPLv3
* -- Update --
* 2021-07-26 リスト用のスクリプトを少し変更
* 2021-07-11 アニメーションやサイズ変更といったのFAのクラスを引数で追加する機能を追加
* text-shadowとbackgroundオプションを追加
* アイコン同士を重ねる機能を追加
* リスト用オプションを追加
* 2021-07-10 初版作成
*/
// 固定で追加するクラス (先頭に半角スペースを入れること)
// 例:' fa-fw'
define('FA_ADD_CLASS', '');
function plugin_fa_inline()
{
// メッセージ
$msg = array(
'empty' => '&fa; Error: The text area is empty.',
'option' => '&fa; Error: Invalid option. -> ',
);
// オプション関連
$options = array(
'fa' => array('xs', 'sm', 'lg', '2x', '3x', '4x', '5x', '6x', '7x', '8x', '9x', '10x', 'fw', 'spin', 'pulse', 'border', 'inverse'),
'rotate' => array('90', '180', '270'),
'flip' => array('horizontal', 'vertical', 'both'),
'pull' => array('left', 'right'),
'stack' => array('1', '2'),
'icon_style' => array(
'fas' => array('solid', 'fas', 's'),
'far' => array('regular', 'far', 'r'),
'fab' => array('brands', 'fab', 'b'),
),
'style' => array('color', 'text-shadow', 'background'),
);
$add = array(
'class' => '',
'icon_style' => 'fas',
'style' => '',
);
$is = array(
'stack' => false,
'li' => false,
);
$args = func_get_args();
if (empty(end($args))) return $msg['empty'];
$class = array_pop($args);
$args = array_unique($args);
// オプション判別
if($args) {
foreach($args as $arg) {
$arg = htmlsc($arg);
if (strpos($arg, '=') !== false) {
// text style
list($key, $val) = explode('=', $arg);
if (in_array($key, $options['style'])) {
$add['style'] .= $key . ':' . $val . ';';
} else {
return $msg['option'] . $arg;
}
} else if (in_array($arg, $options['fa'])) {
// size, animation, border
$add['class'] .= ' fa-' . $arg;
} else if (in_array($arg, $options['rotate'])) {
// rotate
$add['class'] .= ' fa-rotate-' . $arg;
} else if (in_array($arg, $options['flip'])) {
// flip
$add['class'] .= ' fa-flip-' . $arg;
} else if (in_array($arg, $options['pull'])) {
// float
$add['class'] .= ' fa-pull-' . $arg;
} else if (in_array($arg, $options['stack'])) {
// stack option
$add['class'] .= ' fa-stack-' . $arg . 'x';
} else if (in_array($arg, array_icon_style($options['icon_style']))) {
// icon style
foreach ($options['icon_style'] as $fa => $fa_style) {
if (in_array($arg, $fa_style)) {
$add['icon_style'] = $fa;
}
}
} else if (array_key_exists($arg, $is)) {
$is[$arg] = true;
} else {
return $msg['option'] . $arg;
}
}
if (! empty($add['style'])) {
$add['style'] = ' style="' . $add['style'] . '"';
}
}
if (! $is['stack'] && ! preg_match('/^fa[srb]? /', $class)) {
// アイコンのスタイルを指定 (デフォルト: solid)
$class = $add['icon_style'] . ' fa-' . $class;
}
if ($is['stack']) {
// 2つのアイコンを重ねて表示
return stack_icons($class, $add['class'], $add['style']);
}
$html = '<i class="' . $class . $add['class'] . FA_ADD_CLASS . '"' . $add['style'] . '></i>';
if ($is['li']) {
// リストにアイコンを使う
return icon_in_list($html);
}
return $html;
}
/**
* アイコンスタイルの検索用リストの作成
*/
function array_icon_style($styles) {
$list_style = '';
foreach ($styles as $style) {
$list_style .= empty($list_style) ? implode(',', $style) : ',' . implode(',', $style);
}
$list_style = explode(',', $list_style);
return $list_style;
}
/**
* 2つのアイコンを重ねて表示
*/
function stack_icons($icons, $span_class, $span_style) {
$html = <<<EOD
<span class='fa-stack$span_class'$span_style>
$icons
</span>
EOD;
return $html;
}
/**
* リストにアイコンを使う
*/
function icon_in_list($html)
{
static $duplicated = false;
$js = '';
if (! $duplicated) {
$duplicated = true;
$js = <<<EOD
<script>
document.addEventListener("DOMContentLoaded", function() {
var targets = document.getElementsByClassName("fa-li");
for (var target of targets) {
var parent = target.parentNode;
var grand = parent.parentNode;
grand.classList.add("fa-ul");
}
});
</script>
EOD;
}
$html = '<span class="fa-li">' . $html . '</span>' . $js;
return $html;
}