class-su-tools.php
1.44 KB
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
<?php
if ( ! class_exists( 'Su_Tools' ) ) {
/**
*
*
* @deprecated 5.0.5
*/
class Su_Tools {
/**
*
*
* @deprecated 5.0.5
*/
public static function get_icon( $args ) {
if ( is_string( $args ) ) {
$args = array( 'icon' => $args );
}
$args = wp_parse_args( $args, array(
'icon' => '',
'size' => '',
'color' => '',
'style' => ''
) );
if ( ! $args['icon'] ) {
return;
}
if ( $args['style'] ) {
$args['style'] = rtrim( $args['style'], ';' ) . ';';
}
// Font Awesome icon
if ( strpos( $args['icon'], 'icon:' ) !== false ) {
if ( $args['size'] ) {
$args['style'] .= 'font-size:' . $args['size'] . 'px;';
}
if ( $args['color'] ) {
$args['style'] .= 'color:' . $args['color'] . ';';
}
su_query_asset( 'css', 'su-icons' );
return '<i class="sui sui-' . trim( str_replace( 'icon:', '', $args['icon'] ) ) . '" style="' . $args['style'] . '"></i>';
}
// Image icon
elseif ( strpos( $args['icon'], '/' ) !== false ) {
if ( $args['size'] ) {
$args['style'] .= 'width:' . $args['size'] . 'px;height:' . $args['size'] . 'px;';
}
return '<img src="' . $args['icon'] . '" alt="" style="' . $args['style'] . '" />';
}
return false;
}
/**
*
*
* @deprecated 5.0.5
*/
public static function do_attr( $value ) {
return do_shortcode( str_replace( array( '{', '}' ), array( '[', ']' ), $value ) );
}
}
}