Completed
Push — master-stable ( 194be4...31b82b )
by
unknown
19:22 queued 08:30
created

modules/module-info.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * "Learn More" information blocks for all modules live in this file.
4
 *
5
 * jetpack_module_more_info_<module-slug> hooks are for pre-connection information
6
 * jetpack_module_more_info_connected_<module-slug> hooks are used once the user
7
 * 		is connected to show them links to admin panels, usage info etc.
8
 */
9
10
// VaultPress (stub)
11
12
function vaultpress_jetpack_more_info() {
13
	if ( function_exists( 'is_multisite' ) && is_multisite() ) {
14
		$vaultpress_url = 'http://vaultpress.com/jetpack-ms/';
15
	} else {
16
		$vaultpress_url = 'http://vaultpress.com/jetpack/';
17
	}
18
	?>
19
20
	<div class="jp-info-img">
21
		<a href="<?php echo $vaultpress_url?>">
22
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/vaultpress.jpg' ) ?>" alt="<?php esc_attr_e( 'VaultPress', 'jetpack' ) ?>" width="300" height="150" />
23
		</a>
24
	</div>
25
26
<?php	if ( class_exists( 'VaultPress' ) || function_exists( 'vaultpress_contact_service' ) ) : ?>
27
	<p><?php esc_html_e( 'Your WordPress installation is currently being protected with the world&#8217;s best security, backup, and support.', 'jetpack' ); ?></p>
28
	<p><?php printf( _x( 'To check your backups, see any security alerts, or check your VaultPress Vitality, visit your %s.', 'Visit your _VaultPress_dashboard_.', 'jetpack' ), '<a href="https://dashboard.vaultpress.com/">' . esc_html__( 'VaultPress dashboard', 'jetpack' ) . '</a>' ); ?></a></p>
29
<?php	else : ?>
30
	<p><?php esc_html_e( 'With a monthly subscription, the VaultPress plugin will backup your site&#8217;s content, themes, and plugins in real-time, as well as perform regular security scans for common threats and attacks.', 'jetpack' ); ?></p>
31
	<p><?php printf( _x( 'View %s.', 'View _Plans_&_Pricing_. (VaultPress)', 'jetpack' ), '<a href="' . $vaultpress_url . '">' . esc_html__( 'Plans & Pricing', 'jetpack' ) . '</a>' ); ?></a></p>
32
<?php	endif;
33
}
34
add_action( 'jetpack_module_more_info_vaultpress', 'vaultpress_jetpack_more_info' );
35
add_action( 'jetpack_module_more_info_connected_vaultpress', 'vaultpress_jetpack_more_info' );
36
37
function vaultpress_jetpack_load_more_link() {
38
	if ( function_exists( 'is_multisite' ) && is_multisite() ) {
39
		$vaultpress_url = 'http://vaultpress.com/jetpack-ms/';
40
	} else {
41
		$vaultpress_url = 'http://vaultpress.com/jetpack/';
42
	}
43
44
	echo '<a class="button-secondary more-info-link" href="' . $vaultpress_url . '">' . __( "Learn More", 'jetpack' ) . '</a>';
45
}
46
add_filter( 'jetpack_learn_more_button_vaultpress', 'vaultpress_jetpack_load_more_link' );
47
48
// Gravatar Hovercards
49
function grofiles_more_info() { ?>
50
	<div class="jp-info-img">
51
		<a href="http://blog.gravatar.com/2010/10/06/gravatar-hovercards-on-wordpress-com/">
52
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/hovercards.jpg' ) ?>" alt="<?php esc_attr_e( 'Gravatar Hovercard', 'jetpack' ) ?>" width="300" height="150" />
53
		</a>
54
	</div>
55
56
	<h5><?php esc_html_e( "What&#8217;s a Hovercard?", 'jetpack' ) ?></h5>
57
	<p><?php esc_html_e( 'Hovercards enhance plain Gravatar images with information about a person: name, bio, pictures, their contact info, and other services they use on the web like Twitter, Facebook, or LinkedIn.', 'jetpack' ); ?></p>
58
	<p><?php esc_html_e( 'Hovercards offer a great way to show your internet presence and help people find your own blog.', 'jetpack' ); ?></p>
59
<?php
60
}
61
add_action( 'jetpack_module_more_info_gravatar-hovercards', 'grofiles_more_info' );
62
63
function grofiles_more_info_connected() { ?>
64
	<div class="jp-info-img">
65
		<a href="http://blog.gravatar.com/2010/10/06/gravatar-hovercards-on-wordpress-com/">
66
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/hovercards.jpg' ) ?>" alt="<?php esc_attr_e( 'Gravatar Hovercard', 'jetpack' ) ?>" width="300" height="150" />
67
		</a>
68
	</div>
69
70
	<h5><?php esc_html_e( "What&#8217;s a Hovercard?", 'jetpack' ) ?></h5>
71
	<p><?php esc_html_e( 'Hovercards enhance plain Gravatar images with information about a person: name, bio, pictures, their contact info, and other services.', 'jetpack' ); ?></p>
72
	<p><?php esc_html_e( 'To see hovercards, look at any blog post on your blog that has comments. If the commenter has a hovercard associated with their gravatar, mouse over their image and the hovercard will appear. To turn hovercards off, click the Deactivate button above.', 'jetpack' ); ?></p>
73
<?php
74
}
75
add_action( 'jetpack_module_more_info_connected_gravatar-hovercards', 'grofiles_more_info_connected' );
76
77
function grofiles_load_more_link() {
78
	echo '<a class="button-secondary more-info-link" href="http://blog.gravatar.com/2010/10/06/gravatar-hovercards-on-wordpress-com/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
79
}
80
add_filter( 'jetpack_learn_more_button_gravatar-hovercards', 'grofiles_load_more_link' );
81
82
83
// Shortcodes
84 View Code Duplication
function jetpack_shortcodes_more_info() { ?>
85
	<div class="jp-info-img">
86
		<a href="http://en.support.wordpress.com/shortcodes/">
87
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/shortcodes.jpg' ) ?>" alt="<?php esc_attr_e( 'Shortcode Embeds', 'jetpack' ) ?>" width="300" height="150" />
88
		</a>
89
	</div>
90
91
	<p><?php esc_html_e( 'Shortcodes allow you to easily and safely embed media from other places in your site. With just one simple code, you can tell WordPress to embed YouTube, Flickr, and other media.', 'jetpack' ) ?></p>
92
<?php
93
}
94
add_action( 'jetpack_module_more_info_shortcodes', 'jetpack_shortcodes_more_info' );
95
96
function jetpack_shortcodes_more_info_connected() { ?>
97
	<div class="jp-info-img">
98
		<a href="http://en.support.wordpress.com/shortcodes/">
99
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/shortcodes.jpg' ) ?>" alt="<?php esc_attr_e( 'Shortcode Embeds', 'jetpack' ) ?>" width="300" height="150" />
100
		</a>
101
	</div>
102
103
	<p><?php esc_html_e( 'Shortcodes allow you to easily and safely embed media from other places in your site. With just one simple code, you can tell WordPress to embed YouTube, Flickr, and other media.', 'jetpack' ) ?></p>
104
	<p><?php esc_html_e( 'Enter a shortcode directly into the Post/Page editor to embed media. For specific instructions follow the links below.', 'jetpack' ) ?></p>
105
	<?php
106
	$codes = array( 'archives' => 'http://support.wordpress.com/archives-shortcode/',
107
		'bandcamp' => 'http://en.support.wordpress.com/audio/bandcamp/',
108
		'blip.tv' => 'http://support.wordpress.com/videos/bliptv/',
109
		'dailymotion' => 'http://support.wordpress.com/videos/dailymotion/',
110
		'facebook' => 'http://en.support.wordpress.com/facebook-integration/facebook-embeds/',
111
		'flickr' => 'http://support.wordpress.com/videos/flickr-video/',
112
		'gist' => 'http://en.support.wordpress.com/gist/',
113
		'googlemaps' => 'http://support.wordpress.com/google-maps/',
114
		'instagram' => 'https://en.support.wordpress.com/instagram/instagram-images/', 
115
		'jetpack_subscription_form' => 'http://jetpack.me/support/subscriptions/#display',
116
		'polldaddy' => 'http://support.polldaddy.com/wordpress-shortcodes/',
117
		'presentation' => 'http://en.support.wordpress.com/presentations/',
118
		'recipes' => 'http://en.support.wordpress.com/recipes/',
119
		'scribd' => 'http://support.wordpress.com/scribd/',
120
		'slideshare' => 'http://support.wordpress.com/slideshows/slideshare/',
121
		'slideshow' => 'http://en.support.wordpress.com/slideshows/',
122
		'soundcloud' => 'http://support.wordpress.com/audio/soundcloud-audio-player/',
123
		'ted' => 'http://en.support.wordpress.com/videos/ted-talks/',
124
		'twitter-timeline' => 'http://en.support.wordpress.com/widgets/twitter-timeline-widget/#embedding-with-a-shortcode',
125
		// 'upcomingevents' => 'http://en.support.wordpress.com/widgets/upcoming-events/#events-list-shortcode',
126
		'vimeo' => 'http://support.wordpress.com/videos/vimeo/',
127
		'vine' => 'http://en.support.wordpress.com/videos/vine/',
128
		'youtube' => 'http://support.wordpress.com/videos/youtube/',
129
	);
130
131
	$codes['wpvideo (VideoPress)'] = 'http://en.support.wordpress.com/videopress/';
132
133
	$available = '';
134
	foreach ( $codes as $code => $url ) {
135
		$available[] = '<a href="' . $url . '" target="_blank">[' . $code . ']</a>';
136
137
	}
138
	?>
139
	<p><?php echo wp_sprintf( esc_html__( 'Available shortcodes are: %l.', 'jetpack' ), $available ); ?></p>
140
<?php
141
}
142
add_action( 'jetpack_module_more_info_connected_shortcodes', 'jetpack_shortcodes_more_info_connected' );
143
144
function jetpack_shortcodes_load_more_link( $description ) {
145
	echo '<a class="button-secondary more-info-link" href="http://en.support.wordpress.com/shortcodes/">' . esc_html__( 'Learn More' , 'jetpack' ) . '</a>';
146
}
147
add_filter( 'jetpack_learn_more_button_shortcodes', 'jetpack_shortcodes_load_more_link' );
148
149
150
// Shortlinks
151 View Code Duplication
function wpme_more_info() { ?>
152
	<div class="jp-info-img">
153
		<a href="http://wp.me/sf2B5-shorten">
154
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/shortlinks.jpg' ) ?>" alt="<?php esc_attr_e( 'WP.me Shortlinks', 'jetpack' ) ?>" width="300" height="150" />
155
		</a>
156
	</div>
157
158
	<p><?php esc_html_e( "Instead of typing or copy-pasting long URLs, you can now get a short and simple link to your posts and pages. This uses the super compact wp.me domain name, and gives you a unique URL you can use that will be safe and reliable.", 'jetpack' ) ?></p>
159
	<p><?php esc_html_e( "It&#8217;s perfect for use on Twitter, Facebook, and cell phone text messages where every character counts.", 'jetpack' ) ?></p>
160
<?php
161
}
162
add_action( 'jetpack_module_more_info_shortlinks', 'wpme_more_info' );
163
164 View Code Duplication
function wpme_more_info_connected() { ?>
165
	<div class="jp-info-img">
166
		<a href="http://wp.me/sf2B5-shorten">
167
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/shortlinks.jpg' ) ?>" alt="<?php esc_attr_e( 'WP.me Shortlinks', 'jetpack' ) ?>" width="300" height="150" />
168
		</a>
169
	</div>
170
171
	<p><?php esc_html_e( "Instead of typing or copy-pasting long URLs, you can now get a short and simple link to your posts and pages. This uses the super compact wp.me domain name, and gives you a unique URL you can use that will be safe and reliable.", 'jetpack' ) ?></p>
172
	<p><?php esc_html_e( "To use shortlinks, go to any already published post (or publish something new!). A &#8220;Get Shortlink&#8221; button will be visible under the Post title. When you click it, a dialog box will appear with the shortlink and you can copy and paste to Twitter, Facebook or wherever your heart desires.", 'jetpack' ) ?></p>
173
<?php
174
}
175
add_action( 'jetpack_module_more_info_connected_shortlinks', 'wpme_more_info_connected' );
176
177
function wpme_load_more_link( $description ) {
178
	echo '<a class="button-secondary more-info-link" href="http://wp.me/sf2B5-shorten">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
179
}
180
add_filter( 'jetpack_learn_more_button_shortlinks', 'wpme_load_more_link' );
181
182
183
// Site Stats
184 View Code Duplication
function stats_more_info() { ?>
185
	<div class="jp-info-img">
186
		<a href="http://en.support.wordpress.com/stats/">
187
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/stats.jpg' ) ?>" alt="<?php esc_attr_e( 'Site Stats', 'jetpack' ) ?>" width="300" height="150" />
188
		</a>
189
	</div>
190
191
	<p><?php esc_html_e( 'There are many plugins and services that provide statistics, but data can be overwhelming. Site Stats makes the most popular metrics easy to understand through a clear and attractive interface.', 'jetpack' ) ?></p>
192
<?php
193
}
194
add_action( 'jetpack_module_more_info_stats', 'stats_more_info' );
195
196
function stats_more_info_connected() { ?>
197
	<div class="jp-info-img">
198
		<a href="http://en.support.wordpress.com/stats/">
199
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/stats.jpg' ) ?>" alt="<?php esc_attr_e( 'Site Stats', 'jetpack' ) ?>" width="300" height="150" />
200
		</a>
201
	</div>
202
203
	<p><?php esc_html_e( 'There are many plugins and services that provide statistics, but data can be overwhelming. Site Stats makes the most popular metrics easy to understand through a clear and attractive interface.', 'jetpack' ) ?></p>
204
	<p><?php printf( __( 'You can <a href="%s">view your stats dashboard here</a>.', 'jetpack' ), admin_url( 'admin.php?page=stats' ) ); ?></p>
205
<?php
206
}
207
add_action( 'jetpack_module_more_info_connected_stats', 'stats_more_info_connected' );
208
209
function stats_load_more_link( $description ) {
210
	echo '<a class="button-secondary more-info-link" href="http://en.support.wordpress.com/stats/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
211
}
212
add_filter( 'jetpack_learn_more_button_stats', 'stats_load_more_link' );
213
214
215
// Publicize
216 View Code Duplication
function publicize_more_info() { ?>
217
	<div class="jp-info-img">
218
		<a href="http://en.support.wordpress.com/publicize/">
219
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/publicize.jpg' ) ?>" alt="<?php esc_attr_e( 'Publicize', 'jetpack' ) ?>" width="328" height="123" />
220
		</a>
221
	</div>
222
223
	<p><?php esc_html_e( 'Publicize allows you to connect your blog to popular social networking sites and automatically share new posts with your friends.	 You can make a connection for just yourself or for all users on your blog.', 'jetpack' ) ?></p>
224
	<p><?php esc_html_e( 'Publicize allows you to share your posts on Facebook, Twitter, Tumblr, Yahoo!, and Linkedin.', 'jetpack' ); ?></p>
225
226
<?php	if ( 'jetpack_module_more_info_connected_publicize' == current_filter() ) : ?>
227
228
	<p><?php printf( __( 'Manage your <a href="%s">Publicize settings</a>.', 'jetpack' ), menu_page_url( 'sharing', false ) ); ?>
229
230
<?php	endif; ?>
231
232
	<p>&rarr; <a href="http://jetpack.me/support/publicize/"><?php esc_html_e( 'More information on using Publicize.', 'jetpack' ); ?></a></p>
233
<?php
234
}
235
236
add_action( 'jetpack_module_more_info_publicize', 'publicize_more_info' );
237
add_action( 'jetpack_module_more_info_connected_publicize', 'publicize_more_info' );
238
239
function publicize_load_more_link( $description ) {
240
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/publicize/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
241
}
242
add_filter( 'jetpack_learn_more_button_publicize', 'publicize_load_more_link' );
243
244
// Notifications
245 View Code Duplication
function notes_more_info() { ?>
246
	<div class="jp-info-img">
247
		<a href="http://support.wordpress.com/notifications/">
248
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/notes.jpg' ) ?>" alt="<?php esc_attr_e( 'Notifications', 'jetpack' ) ?>" width="300" height="150" />
249
		</a>
250
	</div>
251
252
	<p><?php esc_html_e( 'Keep up with the latest happenings on all your WordPress sites and interact with other WordPress.com users.', 'jetpack' ) ?></p>
253
<?php
254
}
255
add_action( 'jetpack_module_more_info_notes', 'notes_more_info' );
256
257
function notes_more_info_connected() { ?>
258
	<div class="jp-info-img">
259
		<a href="http://support.wordpress.com/notifications/">
260
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/notes.jpg' ) ?>" alt="<?php esc_attr_e( 'Notifications', 'jetpack' ) ?>" width="300" height="150" />
261
		</a>
262
	</div>
263
264
	<p><?php esc_html_e( 'Keep up with the latest happenings on all your WordPress sites and interact with other WordPress.com users.', 'jetpack' ) ?></p>
265
	<p><?php printf( __( 'You can view your notifications in the Toolbar and <a href="%s">on WordPress.com</a>.', 'jetpack' ), 'http://wordpress.com/#!/notifications/' ); ?></p>
266
<?php
267
}
268
add_filter( 'jetpack_module_more_info_connected_notes', 'notes_more_info_connected' );
269
270
function notes_load_more_link( $description ) {
271
	echo '<a class="button-secondary more-info-link" href="http://support.wordpress.com/notifications/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
272
}
273
add_filter( 'jetpack_learn_more_button_notes', 'notes_load_more_link' );
274
275
276
// LaTeX
277 View Code Duplication
function latex_more_info() { ?>
278
	<div class="jp-info-img">
279
		<a href="http://support.wordpress.com/latex/">
280
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/beautifulmath.jpg' ) ?>" alt="<?php esc_attr_e( 'LaTeX', 'jetpack' ) ?>" width="300" height="150" />
281
		</a>
282
	</div>
283
284
	<p><?php printf( esc_html__( '%s is a powerful markup language for writing complex mathematical equations, formulas, etc.', 'jetpack' ), '<a href="http://www.latex-project.org/" target="_blank"><img src="//s0.wp.com/latex.php?latex=%5CLaTeX&amp;bg=transparent&amp;fg=000&amp;s=-1" alt="LaTeX logo" title="LaTeX" style="vertical-align: -25%" /></a>' ); ?></p>
285
	<p><?php printf( esc_html__( 'Jetpack combines the power of %s and the simplicity of WordPress to give you the ultimate in math blogging platforms.', 'jetpack' ), '<img src="//s0.wp.com/latex.php?latex=%5CLaTeX&amp;bg=transparent&amp;fg=000&amp;s=-1" alt="LaTeX logo" title="LaTeX" style="vertical-align: -25%" />' ); ?></p>
286
	<p><?php esc_html_e( 'Wow, that sounds nerdy.', 'jetpack' ) ?></p>
287
<?php
288
}
289
add_action( 'jetpack_module_more_info_latex', 'latex_more_info' );
290
291 View Code Duplication
function latex_more_info_connected() { ?>
292
	<div class="jp-info-img">
293
		<a href="http://support.wordpress.com/latex/">
294
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/beautifulmath.jpg' ) ?>" alt="<?php esc_attr_e( 'LaTeX', 'jetpack' ) ?>" width="300" height="150" />
295
		</a>
296
	</div>
297
298
	<p><?php printf( esc_html__( '%s is a powerful markup language for writing complex mathematical equations, formulas, etc.', 'jetpack' ), '<a href="http://www.latex-project.org/" target="_blank"><img src="//s0.wp.com/latex.php?latex=%5CLaTeX&amp;bg=transparent&amp;fg=000&amp;s=-1" alt="LaTeX logo" title="LaTeX" style="vertical-align: -25%" /></a>' ); ?></p>
299
	<p><?php printf( __( 'Use <code>$latex your latex code here$</code> or <code>[latex]your latex code here[/latex]</code> to include %s in your posts and comments. There are <a href="%s" target="_blank">all sorts of options</a> available.', 'jetpack' ), '<img src="//s0.wp.com/latex.php?latex=%5CLaTeX&amp;bg=transparent&amp;fg=000&amp;s=-1" alt="LaTeX logo" title="LaTeX" style="vertical-align: -25%" />', 'http://support.wordpress.com/latex/' ); ?></p>
300
<?php
301
}
302
add_action( 'jetpack_module_more_info_connected_latex', 'latex_more_info_connected' );
303
304
function latex_load_more_link( $description ) {
305
	echo '<a class="button-secondary more-info-link" href="http://support.wordpress.com/latex/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
306
}
307
add_filter( 'jetpack_learn_more_button_latex', 'latex_load_more_link' );
308
309
310
// Sharedaddy
311 View Code Duplication
function sharedaddy_more_info() { ?>
312
	<div class="jp-info-img">
313
		<a href="http://en.support.wordpress.com/sharing/">
314
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/sharing.jpg' ) ?>" alt="<?php esc_attr_e( 'Sharing', 'jetpack' ) ?>" width="300" height="150" />
315
		</a>
316
	</div>
317
	<p><?php esc_html_e( 'Share your posts with Twitter, Facebook, and a host of other services. You can configure services to appear as icons, text, or both. Some services have additional options to display smart buttons, such as Twitter, which will update the number of times the post has been shared.', 'jetpack' ); ?></p>
318
319
	<p><?php
320
		if ( is_multisite() ) {
321
			esc_html_e( 'The following services are included: Twitter, Facebook, Reddit, PressThis, Digg, LinkedIn, Google +1, Print, and Email.' , 'jetpack' );
322
		} else {
323
			esc_html_e( 'The following services are included: Twitter, Facebook, Reddit, Digg, LinkedIn, Google +1, Print, and Email.' , 'jetpack' );
324
		}
325
	?></p>
326
327
	<p><?php esc_html_e( 'Additionally you can define your own custom services.', 'jetpack' ); ?></p>
328
<?php
329
}
330
add_action( 'jetpack_module_more_info_sharedaddy', 'sharedaddy_more_info' );
331
332
function sharedaddy_more_info_connected() { ?>
333
	<div class="jp-info-img">
334
		<embed type="application/x-shockwave-flash" src="http://s0.videopress.com/player.swf?v=1.02" height="190" wmode="transparent" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=WV0JOwY2"></embed>
335
	</div>
336
337
	<?php
338
	if ( class_exists( 'Sharing_Admin' ) ) {
339
		?>
340
341
		<p><?php printf( __( 'To configure your sharing settings, go to the Settings &rarr; <a href="%s">Sharing</a> menu.', 'jetpack' ), 'options-general.php?page=sharing' ); ?></p>
342
		<p><?php esc_html_e( 'Drag and drop sharing services into the enabled section to have them show up on your site, and drag them into the hidden section to have them hidden behind a button.', 'jetpack' ); ?>
343
344
		<?php
345
	}
346
	?>
347
348
	<p><?php printf( __( 'Full details can be found on the <a href="%s">Sharing support page</a>. This video also gives a swish run-down of how to use the Sharing feature. Watch it in HD for extra snazz!', 'jetpack' ), 'http://support.wordpress.com/sharing/' ); ?></p>
349
<?php
350
}
351
add_action( 'jetpack_module_more_info_connected_sharedaddy', 'sharedaddy_more_info_connected' );
352
353
function sharedaddy_load_more_link( $description ) {
354
	echo '<a class="button-secondary more-info-link" href="http://support.wordpress.com/sharing/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
355
}
356
add_filter( 'jetpack_learn_more_button_sharedaddy', 'sharedaddy_load_more_link' );
357
358
359
// After The Deadline
360
function jpatd_more_info() { ?>
361
	<div class="jp-info-img">
362
		<a href="http://en.support.wordpress.com/proofreading/">
363
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/spelling.jpg' ) ?>" alt="<?php esc_attr_e( 'Spelling and Grammar', 'jetpack' ) ?>" width="300" height="150" />
364
		</a>
365
	</div>
366
367
	<p><?php printf( __( "The <a href='%s'>After&nbsp;the&nbsp;Deadline</a> Proofreading service improves your writing by using artificial intelligence to find your errors and offer smart suggestions.", 'jetpack' ), 'http://www.afterthedeadline.com/' ); ?></p>
368
	<p><?php printf( __( 'After the Deadline provides a number of <a href="%s">customization options</a>, which you can edit in your profile.', 'jetpack' ), esc_url( get_edit_profile_url( get_current_user_id() ) ) . '#atd' ); ?></p>
369
<?php
370
}
371
add_action( 'jetpack_module_more_info_after-the-deadline', 'jpatd_more_info' );
372
373
function jpatd_load_more_link( $description ) {
374
	echo '<a class="button-secondary more-info-link" href="http://en.support.wordpress.com/proofreading/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
375
}
376
add_filter( 'jetpack_learn_more_button_after-the-deadline', 'jpatd_load_more_link' );
377
378
379
// RSS Links Widget, Image Widget, Twitter Widget
380 View Code Duplication
function jetpack_widgets_more_info() { ?>
381
	<div class="jp-info-img">
382
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/widgets.jpg' ) ?>" alt="<?php esc_attr_e( 'Widgets Screenshot', 'jetpack' ) ?>" width="300" height="150" />
383
	</div>
384
385
	<p><strong><?php esc_html_e( 'The RSS Links Widget ', 'jetpack' ); ?></strong> <?php esc_html_e( "allows you to add links to your blog&#8217;s post and comment RSS feeds in your sidebar. This makes it easy for your readers to stay updated when you post new content or receive new comments.", 'jetpack' ) ?></p>
386
	<p><strong><?php esc_html_e( 'The Twitter Widget ', 'jetpack' ); ?></strong> <?php esc_html_e( "shows your latest tweets within a sidebar on your theme. It&#8217;s an easy way to add more activity to your site. There are also a number of customization options.", 'jetpack' ) ?> <strong><?php esc_html_e( 'The Facebook Like Box Widget ', 'jetpack' ); ?></strong> <?php esc_html_e( "shows your Facebook Like Box within a sidebar on your theme. It&#8217;s a great way to let your readers show their support.", 'jetpack' ) ?> <strong><?php esc_html_e( 'The Image Widget ', 'jetpack' ); ?></strong><?php esc_html_e( "allows you to easily add images to widget areas in your theme. It&#8217;s an easy way to add more visual interest to your site.", 'jetpack' ) ?></p>
387
388
<?php
389
}
390
add_action( 'jetpack_module_more_info_widgets', 'jetpack_widgets_more_info' );
391
392
function jetpack_widgets_more_info_connected() { ?>
393
	<div class="jp-info-img">
394
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/widgets.jpg' ) ?>" alt="<?php esc_attr_e( 'Widgets Screenshot', 'jetpack' ) ?>" width="300" height="150" />
395
	</div>
396
397
	<p><?php printf( __( '<strong>The Twitter Widget</strong> shows your latest tweets within a sidebar on your theme.', 'jetpack' ) ); ?></p>
398
	<p><?php printf( __( '<strong>The Facebook Like Box Widget</strong> shows your Facebook Like Box within a sidebar on your theme.', 'jetpack' ) ); ?></p>
399
	<p><?php printf( __( '<strong>The Image Widget</strong> lets you easily add images to a sidebar on your theme.', 'jetpack' ) ); ?></strong> <?php esc_html_e( '', 'jetpack' ) ?></p>
400
	<p><?php printf( __( '<strong>The Gravatar Widget</strong> allows you to pull in your Gravatar image along with some of your Gravatar profile data.', 'jetpack' ) ); ?></p>
401
	<p><?php printf( __( '<strong>The Gallery Widget</strong> provides you with a simple way to display a photo gallery or slideshow in your blog’s sidebar. Requires the Tiled Gallery module.', 'jetpack' ) ); ?></p>
402
	<p><?php printf( __( '<strong>The Display WordPress Posts Widget</strong> lets you display up to ten recent posts from another WordPress.com blog, or a self-hosted WordPress site with Jetpack enabled.', 'jetpack' ) ); ?></p>
403
	<p><?php printf( __( '<strong>The Social Media Icons Widget</strong> lets you add icons for the most popular social networks to your sidebar or other widget area.', 'jetpack' ) ); ?></p>
404
	<!--<p><?php printf( __( '<strong>The Upcoming Events Widget</strong> allows you to use an iCalendar link to display a list of events on your site.', 'jetpack' ) ); ?></p>-->
405
406
	<p><?php esc_html_e( 'Each of these widgets has a number of customization options.', 'jetpack' ); ?>  <?php printf( __( 'To use the widgets, go to Appearance &#8594; <a href="%s">Widgets</a>. Drag them into one of your sidebars and configure away.', 'jetpack' ), admin_url( 'widgets.php' ) ); ?></p>
407
<?php
408
}
409
add_action( 'jetpack_module_more_info_connected_widgets', 'jetpack_widgets_more_info_connected' );
410
411
function jetpack_widgets_load_more_link( $description ) {
412
	echo '<a class="button-secondary more-info-link" href="http://en.support.wordpress.com/widgets/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
413
}
414
add_filter( 'jetpack_learn_more_button_widgets', 'jetpack_widgets_load_more_link' );
415
416
// Subscriptions
417
function jetpack_subscriptions_more_info() { ?>
418
	<div class="jp-info-img">
419
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/subscriptions.jpg' ) ?>" alt="<?php esc_attr_e( 'Subsriptions Screenshot', 'jetpack' ) ?>" width="300" height="150" />
420
	</div>
421
422
	<p><?php esc_html_e( 'Easily allow any visitor to subscribe to all of your posts via email through a widget in your blog&#8217;s sidebar.  Every time you publish a post, WordPress.com will send a notification to all your subscribers.', 'jetpack' ); ?></p>
423
	<p><?php esc_html_e( 'When leaving comments, your visitors can also subscribe to a post&#8217;s comments to keep up with the conversation.', 'jetpack' ); ?></p>
424
425
<?php
426
427
	if ( 'jetpack_module_more_info_connected_subscriptions' == current_filter() )
428
		printf( '<p>' . __( 'To use the Subscriptions widget, go to Appearance &#8594; <a href="%s">Widgets</a>. Drag the widget labeled &#8220;Blog Subscriptions (Jetpack)&#8221; into one of your sidebars and configure away.', 'jetpack' ) . '</p>', admin_url( 'widgets.php' ) );
429
		printf( '<p>' . __( 'You can also make changes to your Subscription settings at the bottom of the <a href="%s">Discussion Settings</a> page.', 'jetpack' ) . '</p>', admin_url( 'options-discussion.php#jetpack-subscriptions-settings' ) );
430
		printf( '<p>' . __( 'To customize the emails sent from your blog to your followers, check the settings at the bottom of the <a href="%s">Reading Settings</a> page.', 'jetpack' ) . '</p>', admin_url( 'options-reading.php#follower-settings' ) );
431
}
432
add_action( 'jetpack_module_more_info_subscriptions', 'jetpack_subscriptions_more_info' );
433
add_action( 'jetpack_module_more_info_connected_subscriptions', 'jetpack_subscriptions_more_info' );
434
435
function jetpack_subscriptions_load_more_link() {
436
	echo '<a class="button-secondary more-info-link" href="http://en.support.wordpress.com/following/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
437
}
438
add_action( 'jetpack_learn_more_button_subscriptions', 'jetpack_subscriptions_load_more_link' );
439
440
// Enhanced Distribution
441
442
function jetpack_enhanced_distribution_more_info() { ?>
443
	<p><?php esc_html_e( 'Jetpack will automatically take the great published content from your blog or website and share it instantly with third party services like search engines, increasing your reach and traffic.', 'jetpack' ); ?></p>
444
445
<?php
446
}
447
448
add_action( 'jetpack_module_more_info_enhanced-distribution', 'jetpack_enhanced_distribution_more_info' );
449
add_action( 'jetpack_module_more_info_connected_enhanced-distribution', 'jetpack_enhanced_distribution_more_info' );
450
451
function jetpack_enhanced_distribution_more_link() {
452
	echo '<a class="button-secondary more-info-link" href="http://en.wordpress.com/firehose/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
453
}
454
add_action( 'jetpack_learn_more_button_enhanced-distribution', 'jetpack_enhanced_distribution_more_link' );
455
456
// Protect
457
function jetpack_protect_more_info() { ?>
458
	<p><?php esc_html_e( 'Protect is a cloud-powered brute force attack prevention tool. We leverage the millions of WordPress sites to identify and block malicious IPs.
459
460
Protect tracks failed login attempts across all Jetpack-connected sites using the Protect module.  If any single IP has too many failed attempts in a short period of time, they are blocked from logging in to any site with this plugin installed.
461
462
Protect is derived from BruteProtect, and will disable BruteProtect on your site if it is currently enabled.', 'jetpack' ); ?></p><?php
463
}
464
465
add_action( 'jetpack_module_more_info_protect', 'jetpack_protect_more_info' );
466
add_action( 'jetpack_module_more_info_connected_protect', 'jetpack_protect_more_info' );
467
468
function jetpack_protect_more_link() {
469
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/protect/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
470
}
471
add_action( 'jetpack_learn_more_button_protect', 'jetpack_protect_more_link' );
472
473
474
// JSON API
475
function jetpack_json_api_more_info() { ?>
476
	<p><?php esc_html_e( 'Jetpack will allow you to authorize applications and services to securely connect to your blog and allow them to use your content in new ways and offer you new functionality.', 'jetpack' ); ?>
477
478
	<p><?php _e( "Developers can use WordPress.com's <a href='http://developer.wordpress.com/docs/oauth2/'>OAuth2</a> authentication system and <a href='http://developer.wordpress.com/docs/api/'>WordPress.com REST API</a> to manage and access your site's content.", 'jetpack' ); ?></p>
479
480
<?php
481
}
482
483
add_action( 'jetpack_module_more_info_json-api', 'jetpack_json_api_more_info' );
484
add_action( 'jetpack_module_more_info_connected_json-api', 'jetpack_json_api_more_info' );
485
486
function jetpack_json_api_more_link() {
487
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/json-api/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
488
}
489
add_action( 'jetpack_learn_more_button_json-api', 'jetpack_json_api_more_link' );
490
491
// Contact Form: START
492
function jetpack_contact_form_learn_more_button() {
493
    echo '<a class="button-secondary more-info-link" href="http://support.wordpress.com/contact-form/">' . __( 'Learn More', 'jetpack' ) . '</a>';
494
}
495
496
function jetpack_contact_form_more_info() {
497
	echo '<div class="jp-info-img">';
498
	echo '<a href="http://support.wordpress.com/contact-form/">';
499
	echo '<img class="jp-info-img" src="' . plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/contactform.jpg' ) . '" alt="' . esc_attr__( 'Contact Form', 'jetpack' ) . '" width="300" height="150" />';
500
	echo '</a>';
501
	echo '</div>';
502
503
	echo '<p>';
504
	_e( 'A contact form is a great way to offer your readers the ability to get in touch, without giving out your personal email address.', 'jetpack' );
505
	echo '</p>';
506
507
	echo '<p>';
508
	_e( 'Each contact form can easily be customized to fit your needs. When a user submits your contact form, the feedback will be filtered through <a href="http://akismet.com/">Akismet</a> (if it is active on your site) to make sure it’s not spam. Any legitimate feedback will then be emailed to you, and added to your feedback management area.', 'jetpack' );
509
	echo '</p>';
510
}
511
512
add_action( 'jetpack_learn_more_button_contact-form', 'jetpack_contact_form_learn_more_button' );
513
add_action( 'jetpack_module_more_info_contact-form', 'jetpack_contact_form_more_info' );
514
add_action( 'jetpack_module_more_info_connected_contact-form', 'jetpack_contact_form_more_info' );
515
// Contact Form: STOP
516
517
// Comments: START
518
function jetpack_comments_learn_more_button() {
519
    echo '<a class="button-secondary more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
520
}
521
522 View Code Duplication
function jetpack_comments_more_info() {
523
?>
524
	<div class="jp-info-img">
525
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/comments.jpg' ) ?>" alt="<?php esc_attr_e( 'Comments Screenshot', 'jetpack' ) ?>" width="300" height="150" />
526
	</div>
527
528
	<p><?php esc_html_e( 'Comments enables your visitors to use their WordPress.com, Twitter, or Facebook accounts when commenting on your site.', 'jetpack' ); ?></p>
529
530
<?php	if ( 'jetpack_module_more_info_connected_comments' == current_filter() ) : ?>
531
532
	<p><?php printf(
533
		__( "Jetpack tries to match your site's color scheme automatically, but you can make manual adjustments at the bottom of the <a href='%s'>Discussion Settings</a> page.", 'jetpack' ),
534
		admin_url( 'options-discussion.php#jetpack-comments-settings' )
535
	); ?></p>
536
537
<?php	endif; ?>
538
<?php
539
}
540
541
add_action( 'jetpack_learn_more_button_comments', 'jetpack_comments_learn_more_button' );
542
add_action( 'jetpack_module_more_info_comments', 'jetpack_comments_more_info' );
543
add_action( 'jetpack_module_more_info_connected_comments', 'jetpack_comments_more_info' );
544
// Comments: STOP
545
546
// Gallery Carousel: START
547
function jetpack_carousel_learn_more_button() {
548
	echo '<a class="button-secondary more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
549
}
550
551 View Code Duplication
function jetpack_carousel_more_info() {
552
?>
553
	<div class="jp-info-img">
554
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/carousel.jpg' ) ?>" alt="<?php esc_attr_e( 'Gallery Carousel Screenshot', 'jetpack' ) ?>" width="300" height="188" />
555
	</div>
556
557
	<p><?php esc_html_e( 'With Carousel active, any standard WordPress galleries you have embedded in posts or pages will launch a gorgeous full-screen photo browsing experience with comments and EXIF metadata.', 'jetpack' ); ?></p>
558
<?php
559
}
560
561
add_action( 'jetpack_learn_more_button_carousel', 'jetpack_carousel_learn_more_button' );
562
add_action( 'jetpack_module_more_info_carousel', 'jetpack_carousel_more_info' );
563
add_action( 'jetpack_module_more_info_connected_carousel', 'jetpack_carousel_more_info' );
564
// Gallery Carousel: STOP
565
566
// Custom CSS: START
567
function jetpack_custom_css_more_info() {
568
	?>
569
	<div class="jp-info-img">
570
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/custom-css.jpg' ) ?>" alt="<?php esc_attr_e( 'Custom CSS', 'jetpack' ) ?>" width="300" height="150" />
571
	</div>
572
573
	<p><?php esc_html_e( "The Custom CSS editor gives you the ability to add to or replace your theme's CSS, all while supplying syntax coloring, auto-indentation, and immediate feedback on the validity of the CSS you're writing.", 'jetpack' ); ?></p>
574
	<p><?php printf( __( 'To use the CSS editor, go to Appearance &#8594; <a href="%s">Edit CSS</a>.', 'jetpack' ), admin_url( 'themes.php?page=editcss' ) ); ?></p>
575
576
	<?php
577
}
578
579
function jetpack_custom_css_more_button() {
580
	echo '<a class="button-secondary more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
581
}
582
583
add_action( 'jetpack_learn_more_button_custom-css', 'jetpack_custom_css_more_button' );
584
add_action( 'jetpack_module_more_info_custom-css', 'jetpack_custom_css_more_info' );
585
// Custom CSS: STOP
586
587
// Minileven: START
588
function jetpack_minileven_more_info() {
589
	?>
590
	<div class="jp-info-img">
591
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/mobile-theme.jpg' ) ?>" alt="<?php esc_attr_e( 'Mobile Theme', 'jetpack' ) ?>" width="300" height="150" />
592
	</div>
593
594
	<p><?php esc_html_e( "There's a good chance that visitors to your site will be using a smartphone, and it's important to provide them with a great reading experience while on the small screen.", 'jetpack' ); ?></p>
595
	<p><?php esc_html_e( "Jetpack's mobile theme is optimized for small screens. It uses the header image, background, and widgets from your current theme for a great custom look. Post format support is included, so your photos and galleries will look fantastic on a smartphone.", 'jetpack' ); ?></p>
596
	<p><?php esc_html_e( 'Visitors on iPhone, Android, Windows Phone, and other mobile devices will automatically see the mobile theme, with the option to view the full site. You can enable or disable the mobile theme by clicking the "Activate" or "Deactive" button above.', 'jetpack' ); ?></p>
597
	<?php
598
}
599
600
function jetpack_minileven_more_button() {
601
	echo '<a class="button-secondary more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
602
}
603
604
add_action( 'jetpack_learn_more_button_minileven', 'jetpack_minileven_more_button' );
605
add_action( 'jetpack_module_more_info_minileven', 'jetpack_minileven_more_info' );
606
// Minileven: STOP
607
608
// Infinite Scroll: START
609
/**
610
 *
611
 */
612
function jetpack_infinite_scroll_more_info() {
613
	$support_text = sprintf( __( 'If you are a theme author, you can learn about adding support for Infinite Scroll at <a href="%1$s">%1$s</a>.', 'jetpack' ), 'http://jetpack.me/support/infinite-scroll/' );
614
615
	?>
616
617
	<?php if ( ! Jetpack::is_active() || ( Jetpack::is_active() && current_theme_supports( 'infinite-scroll' ) ) ) : ?>
618
		<p><?php esc_html_e( 'When you write great content, all you really want is people to find it, right?', 'jetpack' ); ?></p>
619
620
		<p><?php esc_html_e( "With the Infinite Scroll module and a supported theme, that's exactly what happens. Instead of the old way of navigating down a page by scrolling and then clicking a link to get to the next page, waiting for a page refresh&mdash;the document model of the web&mdash;infinite scrolling pulls the next set of posts automatically into view when the reader approaches the bottom of the page, more like an application.", 'jetpack' ); ?></p>
621
622
	<?php else : ?>
623
		<p><?php echo esc_html( sprintf( __( "At this time, your theme, %s, doesn't support Infinite Scroll. Unlike other Jetpack modules, Infinite Scroll needs information from your theme to function properly.", 'jetpack' ), ( function_exists( 'wp_get_theme' ) ? wp_get_theme()->Name : get_current_theme() ) ) ); ?></p>
624
625
		<p><?php esc_html_e( "Until your theme supports Infinite Scroll, you won't be able to activate this module.", 'jetpack' ); ?></p>
626
627
		<?php
628
629
		if ( current_user_can( 'update_themes' ) ) :
630
			ob_start();
631
			theme_update_available( function_exists( 'wp_get_theme' ) ? wp_get_theme() : (object) get_theme( get_current_theme() ) );
632
			$theme_update_available = ob_get_clean();
633
634
			if ( ! empty( $theme_update_available ) ) : ?>
635
				<p><?php printf( __( 'There is an update available for your theme. You may wish to check if this update adds Infinite Scroll support by visiting the <a href="%s">WordPress Updates</a> page.', 'jetpack' ), esc_url( admin_url( 'update-core.php' ) ) ); ?></p>
636
			<?php else : ?>
637
				<p><?php echo $support_text; ?></p>
638
			<?php endif; ?>
639
		<?php else : ?>
640
			<p><?php echo $support_text; ?></p>
641
		<?php endif; ?>
642
	<?php endif;
643
}
644
add_action( 'jetpack_module_more_info_infinite-scroll', 'jetpack_infinite_scroll_more_info' );
645
646
/**
647
 *
648
 */
649
function jetpack_infinite_scroll_more_button() {
650
	echo '<a class="button more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
651
}
652
add_action( 'jetpack_learn_more_button_infinite-scroll', 'jetpack_infinite_scroll_more_button' );
653
// Infinite Scroll: STOP
654
655
656
// Post by Email: START
657 View Code Duplication
function jetpack_post_by_email_more_info() { ?>
658
	<div class="jp-info-img">
659
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/post-by-email.jpg' ) ?>" alt="<?php esc_attr_e( 'Post by Email', 'jetpack' ) ?>" width="300" height="115" />
660
	</div>
661
662
	<p><?php esc_html_e( 'Post by Email is a way of publishing posts on your blog by email. Any email client can be used to send the email, allowing you to publish quickly and easily from devices such as cell phones.', 'jetpack' ); ?></p>
663
664
<?php if ( 'jetpack_module_more_info_connected_post-by-email' == current_filter() ) : ?>
665
666
	<p><?php printf( __( 'Manage your Post By Email address from your <a href="%s">profile settings</a>.', 'jetpack' ), esc_url( get_edit_profile_url( get_current_user_id() ) . '#post-by-email' ) ); ?>
667
668
<?php endif; ?>
669
670
	<p>&rarr; <a href="http://jetpack.me/support/post-by-email/"><?php esc_html_e( 'More information on sending emails, attachments, and customizing your posts.', 'jetpack' ); ?></a></p>
671
672
<?php
673
}
674
675
function jetpack_post_by_email_more_link() {
676
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/post-by-email/">' . __( 'Learn More', 'jetpack' ) . '</a>';
677
}
678
679
add_action( 'jetpack_module_more_info_post-by-email', 'jetpack_post_by_email_more_info' );
680
add_action( 'jetpack_module_more_info_connected_post-by-email', 'jetpack_post_by_email_more_info' );
681
add_action( 'jetpack_learn_more_button_post-by-email', 'jetpack_post_by_email_more_link' );
682
// Post by Email: STOP
683
684
685
// Photon: START
686
/**
687
 *
688
 */
689
function jetpack_photon_more_info() { ?>
690
	<p><?php esc_html_e( "Give your site a boost by loading images in posts from the WordPress.com content delivery network. We cache your images and serve them from our super-fast network, reducing the burden on your Web host with the click of a button.", 'jetpack' ); ?></p>
691
<?php
692
}
693
add_action( 'jetpack_module_more_info_photon', 'jetpack_photon_more_info' );
694
695
/**
696
 * Display "Learn More" button for Photon module
697
 * @uses __
698
 * @action jetpack_learn_more_button_photon
699
 * @return string
700
 */
701
function jetpack_photon_more_link() {
702
	echo '<a class="button-secondary more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
703
}
704
add_action( 'jetpack_learn_more_button_photon', 'jetpack_photon_more_link' );
705
// Photon: STOP
706
707
// Tiled Galleries: START
708 View Code Duplication
function jetpack_tiled_gallery_more_info() { ?>
709
	<div class="jp-info-img">
710
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/tiled-gallery.jpg' ) ?>" alt="<?php esc_attr_e( 'Tiled Galleries', 'jetpack' ) ?>" width="300" height="150" />
711
	</div>
712
713
	<p><?php esc_html_e( 'Create elegant magazine-style mosaic layouts for your photos without having to use an external graphic editor.', 'jetpack' ); ?></p>
714
	<p><?php printf( __( 'When adding a gallery to your post, you now have the option to select a layout style for your images. We\'ve added support for Rectangular, Square, and Circular galleries. By default, galleries will continue to display using the standard thumbnail grid layout. To make the rectangular layout the default for all of your site\'s galleries, head over to <a href="%s">Settings &rarr; Media</a> and check the box next to "Display all your gallery pictures in a cool mosaic."', 'jetpack' ), admin_url( 'options-media.php' ) ); ?></p>
715
	<p><em><?php esc_html_e( 'Note: Images in tiled galleries require extra-special processing, so they will be served from WordPress.com\'s CDN even if the Photon module is disabled.', 'jetpack' ); ?></em></p>
716
<?php
717
}
718
add_action( 'jetpack_module_more_info_tiled-gallery', 'jetpack_tiled_gallery_more_info' );
719
720
function jetpack_tiled_gallery_more_link() {
721
	echo '<a class="button-secondary more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
722
}
723
add_action( 'jetpack_learn_more_button_tiled-gallery', 'jetpack_tiled_gallery_more_link' );
724
// Tiled Galleries: STOP
725
726
// Likes: START
727 View Code Duplication
function jetpack_likes_more_info() { ?>
728
729
	<div class="jp-info-img">
730
		<a href="http://jetpack.me/support/likes/">
731
			<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/likes.jpg' ) ?>" alt="<?php esc_attr_e( 'Likes', 'jetpack' ) ?>" width="323" height="69" />
732
		</a>
733
	</div>
734
735
	<p><?php esc_html_e( 'Likes allow your readers to show their appreciation for your posts and other published content using their WordPress.com accounts. Your readers will then be able to review their liked posts from WordPress.com.', 'jetpack' ) ?></p>
736
	<p><?php esc_html_e( 'Displayed below your posts will be how many people have liked your posts and the Gravatars of those who have liked them.', 'jetpack' ); ?></p>
737
	<?php if ( current_user_can( 'jetpack_manage_modules' ) ) : ?>
738
	<p><?php esc_html_e( 'You can turn Likes on by following these steps:', 'jetpack' ); ?></p>
739
	<ol>
740
		<li><?php esc_html_e( 'Make sure the module is activated by clicking on "Activate" at the bottom of this page.', 'jetpack' ); ?></li>
741
		<li><?php esc_html_e( 'Go to Settings > Sharing in your Dashboard.', 'jetpack' ); ?></li>
742
		<li><?php esc_html_e( 'Ensure that "WordPress.com Likes are…" is set to "On for all posts"', 'jetpack' ); ?></li>
743
	</ol>
744
	<?php endif; ?>
745
	<p>&rarr; <a href="http://jetpack.me/support/likes/"><?php esc_html_e( 'More information on using Likes.', 'jetpack' ); ?></a></p>
746
747
<?php
748
}
749
add_action( 'jetpack_module_more_info_likes', 'jetpack_likes_more_info' );
750
751
function jetpack_likes_more_link() {
752
	echo '<a class="button-secondary more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
753
}
754
add_action( 'jetpack_learn_more_button_likes', 'jetpack_likes_more_link' );
755
// Likes: STOP
756
757
// Omnisearch: START
758
function jetpack_omnisearch_more_info() {
759
	?>
760
761
	<p><?php esc_html_e( 'Search once, get results from everything! Currently supports searching posts, pages, comments, media, and plugins.', 'jetpack' ); ?></p>
762
763
	<p><?php esc_html_e( 'Omnisearch plays nice with other plugins by letting other providers offer results as well.', 'jetpack' ); ?></p>
764
765
	<?php if( class_exists( 'Jetpack_Omnisearch' ) && current_user_can( 'edit_posts' ) ): ?>
766
		<?php echo Jetpack_Omnisearch::get_omnisearch_form(); ?>
767
	<?php endif; ?>
768
769
	<?php
770
}
771
772
function jetpack_omnisearch_more_link() {
773
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/omnisearch/">' . __( 'Learn More', 'jetpack' ) . '</a>';
774
}
775
776
add_action( 'jetpack_module_more_info_omnisearch',  'jetpack_omnisearch_more_info' );
777
add_action( 'jetpack_learn_more_button_omnisearch', 'jetpack_omnisearch_more_link' );
778
// Omnisearch: STOP
779
780
// Widget Visibility: START
781
function jetpack_widget_visibility_more_info() { ?>
782
	<p><?php esc_html_e( 'Control which pages your widgets appear on with Widget Visibility.', 'jetpack' ); ?></p>
783
	<p><?php esc_html_e( 'To control visibility, expand the widget and click the Visibility button next to the Save button, and then, choose a set of visibility options.', 'jetpack' ); ?></p>
784
	<p><?php esc_html_e( 'For example, if you wanted the Archives widget to only appear on category archives and error pages, choose "Show" from the first dropdown and then add two rules: "Page is 404 Error Page" and "Category is All Category Pages."', 'jetpack' ); ?></p>
785
	<p><?php esc_html_e( 'You can also hide widgets based on the current page. For example, if you don\'t want the Archives widget to appear on search results pages, choose "Hide" and "Page is Search results."', 'jetpack' ); ?></p>
786
<?php
787
}
788
789
function jetpack_widget_visibility_more_link() {
790
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/widget-visibility/">' . __( 'Learn More', 'jetpack' ) . '</a>';
791
}
792
793
add_action( 'jetpack_module_more_info_widget-visibility',  'jetpack_widget_visibility_more_info' );
794
add_action( 'jetpack_learn_more_button_widget-visibility', 'jetpack_widget_visibility_more_link' );
795
// Widget Visibility: STOP
796
797
// VideoPress: START
798
function jetpack_videopress_more_info() {
799
	?>
800
	<p><?php printf(
801
		__( 'With the VideoPress module you can easily upload videos to your WordPress site and embed them in your posts and pages. This module requires a WordPress.com account with an active <a href="%1$s" target="_blank">VideoPress subscription</a>. Once you have purchased a VideoPress subscription, <a href="%2$s">click here to configure VideoPress</a>.', 'jetpack' ),
802
		'http://store.wordpress.com/premium-upgrades/videopress/',
803
		Jetpack::admin_url( 'page=jetpack&configure=videopress' )
804
	); ?></p>
805
	<?php
806
}
807
add_action( 'jetpack_module_more_info_videopress', 'jetpack_videopress_more_info' );
808
809
function jetpack_videopress_more_link() {
810
	echo '<a class="button-secondary more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
811
}
812
add_action( 'jetpack_learn_more_button_videopress', 'jetpack_videopress_more_link' );
813
// VideoPress: STOP
814
815
// SSO: START
816
function jetpack_sso_more_info() { ?>
817
818
	<p><?php esc_html_e( 'With Single Sign On, your users will be able to log in to or register for your WordPress site with the same credentials they use on WordPress.com.  It\'s safe and secure.' , 'jetpack' ); ?></p>
819
	<p><?php esc_html_e( 'Once enabled, a "Log in with WordPress.com" option will be added to your existing log in form.' , 'jetpack' ); ?></p>
820
821
<?php
822
}
823
824
function jetpack_sso_more_link() {
825
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/sso/">' . __( 'Learn More', 'jetpack' ) . '</a>';
826
}
827
828
add_action( 'jetpack_module_more_info_sso',  'jetpack_sso_more_info' );
829
add_action( 'jetpack_learn_more_button_sso', 'jetpack_sso_more_link' );
830
// SSO: STOP
831
832
// Monitor: START
833
function jetpack_monitor_more_info() { ?>
834
835
	<p><?php esc_html_e( 'Nobody likes downtime, and that\'s why Jetpack Monitor is on the job, keeping tabs on your site by checking it every five minutes. As soon as any downtime is detected, you will receive an email notification alerting you to the issue. That way you can act quickly, to get your site back online again!', 'jetpack' ); ?>
836
837
	<p><?php esc_html_e( 'We’ll also let you know as soon as your site is up and running, so you can keep an eye on total downtime.', 'jetpack'); ?></p>
838
839
<?php
840
}
841
add_action( 'jetpack_module_more_info_monitor', 'jetpack_monitor_more_info' );
842
843
function jetpack_monitor_more_link() {
844
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/monitor/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
845
}
846
add_action( 'jetpack_learn_more_button_monitor', 'jetpack_monitor_more_link' );
847
// Monitor: STOP
848
849
// Related Posts: START
850
function jetpack_related_posts_more_info() {
851
	$template = <<<EOT
852
		<div class="jp-info-img">
853
			<a href="http://jetpack.me/support/related-posts/">
854
				<img class="jp-info-img" src="%s" alt="%s" width="300" height="98" />
855
			</a>
856
		</div>
857
858
		<p>%s</p>
859
		<p>&rarr; <a href="http://jetpack.me/support/related-posts/">%s</a></p>
860
EOT;
861
	printf(
862
		$template,
863
		plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/related-posts.jpg' ),
864
		esc_attr__( 'Related Posts', 'jetpack' ),
865
		esc_html__( '"Related Posts" shows additional relevant links from your site under your posts. If the feature is enabled, links appear underneath your Sharing Buttons and WordPress.com Likes (if you’ve turned these on).', 'jetpack' ),
866
		esc_html__( 'More information on using Related Posts.', 'jetpack' )
867
	);
868
}
869
add_action( 'jetpack_module_more_info_related-posts', 'jetpack_related_posts_more_info' );
870
871
function jetpack_related_posts_more_info_connected() {
872
	$template = <<<EOT
873
		<div class="jp-info-img">
874
			<a href="http://jetpack.me/support/related-posts/">
875
				<img class="jp-info-img" src="%s" alt="%s" width="300" height="98" />
876
			</a>
877
		</div>
878
879
		<p>%s</p>
880
		<p>&rarr; <a href="http://jetpack.me/support/related-posts/">%s</a></p>
881
		<hr />
882
		<p><a href="%s#sync-related-posts">%s</a></p>
883
EOT;
884
	printf(
885
		$template,
886
		plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/related-posts.jpg' ),
887
		esc_attr__( 'Related Posts', 'jetpack' ),
888
		esc_html__( '"Related Posts" shows additional relevant links from your site under your posts. If the feature is enabled, links appear underneath your Sharing Buttons and WordPress.com Likes (if you’ve turned these on).', 'jetpack' ),
889
		esc_html__( 'More information on using Related Posts.', 'jetpack' ),
890
		esc_url( Jetpack::admin_url( array( 'page' => 'jetpack-debugger' ) ) ),
891
		esc_html__( 'This feature uses the WordPress.com infrastructure and requires that your public content be mirrored there. If you see intermittent issues only affecting certain posts, request a reindex of your posts.', 'jetpack' )
892
	);
893
}
894
add_action( 'jetpack_module_more_info_connected_related-posts', 'jetpack_related_posts_more_info_connected' );
895
896
function jetpack_related_posts_more_button() {
897
	echo '<a class="button more-info-link" href="#">' . __( 'Learn More', 'jetpack' ) . '</a>';
898
}
899
add_action( 'jetpack_learn_more_button_related-posts', 'jetpack_related_posts_more_button' );
900
// Related Posts: STOP
901
902
// Markdown: START
903
function jetpack_markdown_more_info() { ?>
904
	<p><?php esc_html_e( 'Markdown lets you compose posts and comments with links, lists, and other styles using regular characters and punctuation marks. Markdown is used by writers and bloggers who want a quick and easy way to write rich text, without having to take their hands off the keyboard, and without learning a lot of complicated codes and shortcuts.', 'jetpack' ); ?></p>
905
906
<?php
907
}
908
add_action( 'jetpack_module_more_info_markdown', 'jetpack_markdown_more_info' );
909
910
function jetpack_markdown_more_link() {
911
	echo '<a class="button-secondary more-info-link" href="http://en.support.wordpress.com/markdown/">' . esc_html__( 'Learn More', 'jetpack' ) . '</a>';
912
}
913
add_action( 'jetpack_learn_more_button_markdown', 'jetpack_markdown_more_link' );
914
// Markdown: STOP
915
916
// Site Verification Tools: START
917
function jetpack_verification_tools_more_info() { ?>
918
	<p><?php esc_html_e( 'Use these tools to verify that you own/control your website with other external services like Google, Bing and Pinterest.', 'jetpack' ); ?></p>
919
	<p><?php printf( __( "Verifying your site allows you to access advanced features on these other services (e.g. Webmaster tools, Google Search Console, or getting a verified badge). We'll just add an invisible %s tag to the source code of your homepage.", 'jetpack' ), '<code>meta</code>' ); ?></p>
920
<?php
921
}
922
add_action( 'jetpack_module_more_info_verification-tools', 'jetpack_verification_tools_more_info' );
923
924
function jetpack_verification_tools_more_link() {
925
	echo '<a class="button-secondary more-info-link" href="http://support.wordpress.com/webmaster-tools/">' . __( 'Learn More', 'jetpack' ) . '</a>';
926
}
927
add_action( 'jetpack_learn_more_button_verification-tools', 'jetpack_verification_tools_more_link' );
928
// Site Verification Tools: STOP
929
930
// Custom Content Types: START
931
function jetpack_custom_content_types_more_info() { ?>
932
933
	<div class="jp-info-img">
934
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/custom-content-types.jpg' ) ?>" alt="<?php esc_attr_e( 'Custom Content Type', 'jetpack' ) ?>" width="300" height="150" />
935
	</div>
936
937
	<p><?php esc_html_e( 'Organize and display different types of content on your site, separate from posts and pages.', 'jetpack' ); ?></p>
938
	<p><?php printf( __( 'To enable a custom content type, head over to <a href="%s">Settings &rarr; Writing &rarr; Your Custom Content Types</a> to activate either "Portfolio Projects” or “Testimonials” by checking the corresponding checkbox. You can now add projects and testimonials under the new "Portfolio” or “Testimonials” menu item in your sidebar.', 'jetpack' ), admin_url( 'options-writing.php#cpt-options' ) ); ?></p>
939
	<p><?php
940
		/* translators: all variables are URLs */
941
		printf(
942
			__(
943
				'Once added, your custom content will be visible on your website at %1$s or %2$s, or you may add them with <a href="%3$s" target="_blank">shortcodes</a>.',
944
				'jetpack'
945
			),
946
			get_site_url() . '/portfolio/',
947
			get_site_url() . '/testimonial/',
948
			'http://jetpack.me/support/custom-content-types/'
949
		);
950
	?></p>
951
<?php
952
}
953
add_action( 'jetpack_module_more_info_custom-content-types', 'jetpack_custom_content_types_more_info' );
954
955
function jetpack_custom_content_types_more_link() {
956
	echo '<a class="button-secondary more-info-link" href="http://support.wordpress.com/portfolios/">' . __( 'Learn More', 'jetpack' ) . '</a>';
957
}
958
add_action( 'jetpack_learn_more_button_custom-content-types', 'jetpack_custom_content_types_more_link' );
959
// Custom Content Types: STOP
960
961
// Site Icon: START
962
function jetpack_custom_site_icon() { ?>
963
964
965
	<div class="jp-info-img">
966
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/site-icon.png' ) ?>" alt="<?php esc_attr_e( 'Site Icon', 'jetpack' ) ?>" width="300" height="150" />
967
	</div>
968
969
	<p><?php esc_html_e( 'Site Icon lets you create an icon for your site. This icon will be used as favicon, mobile icon, and Tile on Windows 8 computers.', 'jetpack' ); ?></p>
970
	<p><?php printf( __( 'To add a new icon to your site, head over to <a href="%s">Settings &rarr; General &rarr; Site Icon</a>, and upload an icon.', 'jetpack' ), admin_url( 'options-general.php#site-icon' ) ); ?></p>
971
972
<?php
973
}
974
add_action( 'jetpack_module_more_info_site-icon', 'jetpack_custom_site_icon' );
975
976
function jetpack_site_icon_more_link() {
977
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/site-icon">' . __( 'Learn More', 'jetpack' ) . '</a>';
978
}
979
add_action( 'jetpack_learn_more_button_site-icon', 'jetpack_site_icon_more_link' );
980
// Site Icon: STOP
981
982
// Manage: Start
983 View Code Duplication
function jetpack_custom_jetpack_manage() { ?>
0 ignored issues
show
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
984
985
986
	<div class="jp-info-img">
987
		<img class="jp-info-img" src="<?php echo plugins_url( basename( dirname( dirname( __FILE__ ) ) ) . '/images/screenshots/manage.jpg' ) ?>" alt="<?php esc_attr_e( 'Manage all of your WordPress sites, self-hosted or not, from WordPress.com', 'jetpack' ) ?>" width="300" height="150" />
988
	</div>
989
990
	<p><em><?php esc_html_e( 'Enabling Manage allows you to update your self-hosted WordPress sites along with any WordPress.com sites you have, all in one simple dashboard.', 'jetpack' ); ?></em></p>
991
	<p><strong><?php _e( 'Plugins', 'jetpack' ); ?></strong><br />
992
		<?php printf( __( 'Now you can update plugins, set plugins to automatically update, and activate or deactivate plugins on a per-site basis or in bulk from <a href="%s">wordpress.com/plugins</a>.', 'jetpack' ), 'https://wordpress.com/plugins' ); ?></p>
993
994
	<p><strong><?php _e( 'Themes', 'jetpack' ); ?></strong><br />
995
		<?php printf( __( 'List your installed themes, search, and activate them from <a href="%s">wordpress.com/design</a>.', 'jetpack' ), 'https://wordpress.com/design' ); ?></p>
996
997
	<p><strong><?php _e( 'Menus', 'jetpack' ); ?></strong><br />
998
		<?php printf( __( 'Create a new menu for your site, or edit existing menus from <a href="%s">wordpress.com/menus</a>.', 'jetpack' ), 'https://wordpress.com/menus' ); ?></p>
999
1000
<?php
1001
}
1002
add_action( 'jetpack_module_more_info_manage', 'jetpack_custom_jetpack_manage' );
1003
1004
function jetpack_manage_more_link() {
1005
	echo '<a class="button-secondary more-info-link" href="http://jetpack.me/support/site-management/">' . __( 'Learn More', 'jetpack' ) . '</a>';
1006
}
1007
add_action( 'jetpack_learn_more_button_manage', 'jetpack_manage_more_link' );
1008
// Manage: STOP
1009