1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* A logo for Jetpack. |
4
|
|
|
* |
5
|
|
|
* @package jetpack-logo |
6
|
|
|
*/ |
7
|
|
|
|
8
|
|
|
namespace Automattic\Jetpack\Assets; |
9
|
|
|
|
10
|
|
|
/** |
11
|
|
|
* Create and render a Jetpack logo. |
12
|
|
|
*/ |
13
|
|
|
class Logo { |
14
|
|
|
/** |
15
|
|
|
* Absolute URL of the Jetpack logo. |
16
|
|
|
* |
17
|
|
|
* @var string |
18
|
|
|
*/ |
19
|
|
|
private $url; |
20
|
|
|
|
21
|
|
|
/** |
22
|
|
|
* Constructor. |
23
|
|
|
* You can optionally pass a URL to override the default one. |
24
|
|
|
* |
25
|
|
|
* @param string $url New URL of the Jetpack logo. |
26
|
|
|
*/ |
27
|
|
|
public function __construct( $url = '' ) { |
28
|
|
|
if ( ! $url ) { |
29
|
|
|
$url = plugins_url( 'assets/logo.svg', __DIR__ ); |
30
|
|
|
} |
31
|
|
|
|
32
|
|
|
$this->url = $url; |
33
|
|
|
} |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* Build and render an <img /> tag with the Jetpack logo. |
37
|
|
|
* |
38
|
|
|
* @return string The Jetpack logo in an <img /> tag. |
39
|
|
|
*/ |
40
|
|
|
public function render() { |
41
|
|
|
return sprintf( |
42
|
|
|
'<img src="%s" class="jetpack-logo" alt="%s" />', |
43
|
|
|
esc_url( $this->url ), |
44
|
|
|
esc_attr( 'Jetpack.' ) |
45
|
|
|
); |
46
|
|
|
} |
47
|
|
|
|
48
|
|
|
/** |
49
|
|
|
* Return string containing the Jetpack logo. |
50
|
|
|
* |
51
|
|
|
* @since 7.5.0 |
52
|
|
|
* |
53
|
|
|
* @param bool $logotype Should we use the full logotype (logo + text). Default to false. |
54
|
|
|
* |
55
|
|
|
* @return string |
56
|
|
|
*/ |
57
|
|
|
public function get_jp_emblem( $logotype = false ) { |
58
|
|
|
$logo = '<path fill="#00BE28" d="M16,0C7.2,0,0,7.2,0,16s7.2,16,16,16c8.8,0,16-7.2,16-16S24.8,0,16,0z M15.2,18.7h-8l8-15.5V18.7z M16.8,28.8 V13.3h8L16.8,28.8z"/>'; |
59
|
|
|
$text = ' |
60
|
|
|
<path d="M41.3,26.6c-0.5-0.7-0.9-1.4-1.3-2.1c2.3-1.4,3-2.5,3-4.6V8h-3V6h6v13.4C46,22.8,45,24.8,41.3,26.6z" /> |
61
|
|
|
<path d="M65,18.4c0,1.1,0.8,1.3,1.4,1.3c0.5,0,2-0.2,2.6-0.4v2.1c-0.9,0.3-2.5,0.5-3.7,0.5c-1.5,0-3.2-0.5-3.2-3.1V12H60v-2h2.1V7.1 H65V10h4v2h-4V18.4z" /> |
62
|
|
|
<path d="M71,10h3v1.3c1.1-0.8,1.9-1.3,3.3-1.3c2.5,0,4.5,1.8,4.5,5.6s-2.2,6.3-5.8,6.3c-0.9,0-1.3-0.1-2-0.3V28h-3V10z M76.5,12.3 c-0.8,0-1.6,0.4-2.5,1.2v5.9c0.6,0.1,0.9,0.2,1.8,0.2c2,0,3.2-1.3,3.2-3.9C79,13.4,78.1,12.3,76.5,12.3z" /> |
63
|
|
|
<path d="M93,22h-3v-1.5c-0.9,0.7-1.9,1.5-3.5,1.5c-1.5,0-3.1-1.1-3.1-3.2c0-2.9,2.5-3.4,4.2-3.7l2.4-0.3v-0.3c0-1.5-0.5-2.3-2-2.3 c-0.7,0-2.3,0.5-3.7,1.1L84,11c1.2-0.4,3-1,4.4-1c2.7,0,4.6,1.4,4.6,4.7L93,22z M90,16.4l-2.2,0.4c-0.7,0.1-1.4,0.5-1.4,1.6 c0,0.9,0.5,1.4,1.3,1.4s1.5-0.5,2.3-1V16.4z" /> |
64
|
|
|
<path d="M104.5,21.3c-1.1,0.4-2.2,0.6-3.5,0.6c-4.2,0-5.9-2.4-5.9-5.9c0-3.7,2.3-6,6.1-6c1.4,0,2.3,0.2,3.2,0.5V13 c-0.8-0.3-2-0.6-3.2-0.6c-1.7,0-3.2,0.9-3.2,3.6c0,2.9,1.5,3.8,3.3,3.8c0.9,0,1.9-0.2,3.2-0.7V21.3z" /> |
65
|
|
|
<path d="M110,15.2c0.2-0.3,0.2-0.8,3.8-5.2h3.7l-4.6,5.7l5,6.3h-3.7l-4.2-5.8V22h-3V6h3V15.2z" /> |
66
|
|
|
<path d="M58.5,21.3c-1.5,0.5-2.7,0.6-4.2,0.6c-3.6,0-5.8-1.8-5.8-6c0-3.1,1.9-5.9,5.5-5.9s4.9,2.5,4.9,4.9c0,0.8,0,1.5-0.1,2h-7.3 c0.1,2.5,1.5,2.8,3.6,2.8c1.1,0,2.2-0.3,3.4-0.7C58.5,19,58.5,21.3,58.5,21.3z M56,15c0-1.4-0.5-2.9-2-2.9c-1.4,0-2.3,1.3-2.4,2.9 C51.6,15,56,15,56,15z" /> |
67
|
|
|
'; |
68
|
|
|
return sprintf( |
69
|
|
|
'<svg id="jetpack-logo__icon" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="0 0 %1$s 32">%2$s</svg>', |
70
|
|
|
( true === $logotype ? '118' : '32' ), |
71
|
|
|
( true === $logotype ? $logo . $text : $logo ) |
72
|
|
|
); |
73
|
|
|
} |
74
|
|
|
} |
75
|
|
|
|