Version Description
- Add Threema
- Add Houzz
- Add StockTwits
- Remove App.net
- Remove Baidu
Download this release
Release Info
Developer | micropat |
Plugin | AddToAny Share Buttons |
Version | 1.7.17 |
Comparing to | |
See all releases |
Code changes from version 1.7.16 to 1.7.17
- README.txt +8 -1
- add-to-any.php +2 -2
- addtoany.compat.php +1 -1
- addtoany.services.php +667 -662
- icons/app_net.svg +0 -1
- icons/baidu.svg +0 -1
- icons/houzz.svg +1 -0
- icons/stocktwits.svg +1 -0
- icons/threema.svg +1 -0
README.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: micropat, addtoany
|
|
3 |
Tags: AddToAny, share, sharing, social, share buttons, share button, social media, media, marketing, links, email, seo, woocommerce, google, linkedin, reddit, facebook, like, twitter, pinterest, whatsapp, instagram, youtube, share this, sharethis, feed, icons
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.8
|
6 |
-
Stable tag: 1.7.
|
7 |
|
8 |
Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
|
9 |
|
@@ -349,6 +349,13 @@ Upload (or move) the `add-to-any` plugin directory into the `/wp-content/mu-plug
|
|
349 |
|
350 |
== Changelog ==
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
= 1.7.16 =
|
353 |
* Set the CSS enqueue priority to `20` to load after most theme stylesheets
|
354 |
* Resolves lines under buttons (`box-shadow`) caused by CSS such as the default Twenty Seventeen theme's stylesheet
|
3 |
Tags: AddToAny, share, sharing, social, share buttons, share button, social media, media, marketing, links, email, seo, woocommerce, google, linkedin, reddit, facebook, like, twitter, pinterest, whatsapp, instagram, youtube, share this, sharethis, feed, icons
|
4 |
Requires at least: 3.7
|
5 |
Tested up to: 4.8
|
6 |
+
Stable tag: 1.7.17
|
7 |
|
8 |
Share buttons for WordPress including the AddToAny sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp, many more, and follow icons too.
|
9 |
|
349 |
|
350 |
== Changelog ==
|
351 |
|
352 |
+
= 1.7.17 =
|
353 |
+
* Add Threema
|
354 |
+
* Add Houzz
|
355 |
+
* Add StockTwits
|
356 |
+
* Remove App.net
|
357 |
+
* Remove Baidu
|
358 |
+
|
359 |
= 1.7.16 =
|
360 |
* Set the CSS enqueue priority to `20` to load after most theme stylesheets
|
361 |
* Resolves lines under buttons (`box-shadow`) caused by CSS such as the default Twenty Seventeen theme's stylesheet
|
add-to-any.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: AddToAny Share Buttons
|
4 |
Plugin URI: https://www.addtoany.com/
|
5 |
Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.
|
6 |
-
Version: 1.7.
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
Text Domain: add-to-any
|
@@ -880,7 +880,7 @@ function A2A_SHARE_SAVE_add_to_content( $content ) {
|
|
880 |
function A2A_SHARE_SAVE_pre_get_posts( $query ) {
|
881 |
if ( $query->is_main_query() ) {
|
882 |
add_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 98 );
|
883 |
-
add_filter( 'the_excerpt', 'A2A_SHARE_SAVE_add_to_content', 98 );
|
884 |
}
|
885 |
}
|
886 |
|
3 |
Plugin Name: AddToAny Share Buttons
|
4 |
Plugin URI: https://www.addtoany.com/
|
5 |
Description: Share buttons for your pages including AddToAny's universal sharing button, Facebook, Twitter, Google+, Pinterest, WhatsApp and many more.
|
6 |
+
Version: 1.7.17
|
7 |
Author: AddToAny
|
8 |
Author URI: https://www.addtoany.com/
|
9 |
Text Domain: add-to-any
|
880 |
function A2A_SHARE_SAVE_pre_get_posts( $query ) {
|
881 |
if ( $query->is_main_query() ) {
|
882 |
add_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 98 );
|
883 |
+
add_filter( 'the_excerpt', 'A2A_SHARE_SAVE_add_to_content', 98 );
|
884 |
}
|
885 |
}
|
886 |
|
addtoany.compat.php
CHANGED
@@ -51,7 +51,7 @@ add_action( 'woocommerce_share', 'addtoany_woocommerce_share', 10 );
|
|
51 |
|
52 |
function addtoany_woocommerce_share() {
|
53 |
remove_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 98 );
|
54 |
-
remove_filter( 'the_excerpt', 'A2A_SHARE_SAVE_add_to_content', 98 );
|
55 |
|
56 |
$options = get_option( 'addtoany_options', array() );
|
57 |
$sharing_disabled = get_post_meta( get_the_ID(), 'sharing_disabled', true );
|
51 |
|
52 |
function addtoany_woocommerce_share() {
|
53 |
remove_filter( 'the_content', 'A2A_SHARE_SAVE_add_to_content', 98 );
|
54 |
+
remove_filter( 'the_excerpt', 'A2A_SHARE_SAVE_add_to_content', 98 );
|
55 |
|
56 |
$options = get_option( 'addtoany_options', array() );
|
57 |
$sharing_disabled = get_post_meta( get_the_ID(), 'sharing_disabled', true );
|
addtoany.services.php
CHANGED
@@ -1,663 +1,668 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
$A2A_SHARE_SAVE_services = array(
|
4 |
-
|
5 |
-
"facebook" => array(
|
6 |
-
"name" => "Facebook",
|
7 |
-
"icon" => "facebook",
|
8 |
-
"color" => "3B5998",
|
9 |
-
),
|
10 |
-
"twitter" => array(
|
11 |
-
"name" => "Twitter",
|
12 |
-
"icon" => "twitter",
|
13 |
-
"color" => "55ACEE",
|
14 |
-
),
|
15 |
-
"google_plus" => array(
|
16 |
-
"name" => "Google+",
|
17 |
-
"icon" => "google_plus",
|
18 |
-
"color" => "DD4B39",
|
19 |
-
),
|
20 |
-
"pinterest" => array(
|
21 |
-
"name" => "Pinterest",
|
22 |
-
"icon" => "pinterest",
|
23 |
-
"color" => "BD081C",
|
24 |
-
),
|
25 |
-
"email" => array(
|
26 |
-
"name" => "Email",
|
27 |
-
"icon" => "email",
|
28 |
-
"color" => "0166FF",
|
29 |
-
),
|
30 |
-
"tumblr" => array(
|
31 |
-
"name" => "Tumblr",
|
32 |
-
"icon" => "tumblr",
|
33 |
-
"color" => "35465C",
|
34 |
-
),
|
35 |
-
"reddit" => array(
|
36 |
-
"name" => "Reddit",
|
37 |
-
"icon" => "reddit",
|
38 |
-
"color" => "ff4500",
|
39 |
-
),
|
40 |
-
"linkedin" => array(
|
41 |
-
"name" => "LinkedIn",
|
42 |
-
"icon" => "linkedin",
|
43 |
-
"color" => "007BB5",
|
44 |
-
),
|
45 |
-
"whatsapp" => array(
|
46 |
-
"name" => "WhatsApp",
|
47 |
-
"icon" => "whatsapp",
|
48 |
-
"color" => "12AF0A",
|
49 |
-
),
|
50 |
-
"aim" => array(
|
51 |
-
"name" => "AIM",
|
52 |
-
"icon" => "aim",
|
53 |
-
"color" => "00C2FF",
|
54 |
-
),
|
55 |
-
"amazon_wish_list" => array(
|
56 |
-
"name" => "Amazon Wish List",
|
57 |
-
"icon" => "amazon",
|
58 |
-
"color" => "F90",
|
59 |
-
),
|
60 |
-
"aol_mail" => array(
|
61 |
-
"name" => "AOL Mail",
|
62 |
-
"icon" => "aol",
|
63 |
-
"color" => "2A2A2A",
|
64 |
-
),
|
65 |
-
"
|
66 |
-
"name" => "
|
67 |
-
"icon" => "
|
68 |
-
"color" => "
|
69 |
-
),
|
70 |
-
"
|
71 |
-
"name" => "
|
72 |
-
"icon" => "
|
73 |
-
"color" => "
|
74 |
-
),
|
75 |
-
"
|
76 |
-
"name" => "
|
77 |
-
"icon" => "
|
78 |
-
"color" => "
|
79 |
-
),
|
80 |
-
"
|
81 |
-
"name" => "
|
82 |
-
"icon" => "
|
83 |
-
"color" => "
|
84 |
-
),
|
85 |
-
"
|
86 |
-
"name" => "
|
87 |
-
"icon" => "
|
88 |
-
"color" => "
|
89 |
-
),
|
90 |
-
"
|
91 |
-
"name" => "
|
92 |
-
"icon" => "
|
93 |
-
"color" => "
|
94 |
-
),
|
95 |
-
"
|
96 |
-
"name" => "
|
97 |
-
"icon" => "
|
98 |
-
"color" => "
|
99 |
-
),
|
100 |
-
"
|
101 |
-
"name" => "
|
102 |
-
"icon" => "
|
103 |
-
"color" => "
|
104 |
-
),
|
105 |
-
"
|
106 |
-
"name" => "
|
107 |
-
"icon" => "
|
108 |
-
"color" => "96C044",
|
109 |
-
),
|
110 |
-
"
|
111 |
-
"name" => "
|
112 |
-
"icon" => "
|
113 |
-
"color" => "
|
114 |
-
),
|
115 |
-
"
|
116 |
-
"name" => "
|
117 |
-
"icon" => "
|
118 |
-
"color" => "
|
119 |
-
),
|
120 |
-
"
|
121 |
-
"name" => "
|
122 |
-
"icon" => "
|
123 |
-
"color" => "
|
124 |
-
),
|
125 |
-
"
|
126 |
-
"name" => "
|
127 |
-
"icon" => "
|
128 |
-
"color" => "
|
129 |
-
),
|
130 |
-
"
|
131 |
-
"name" => "
|
132 |
-
"icon" => "
|
133 |
-
"color" => "
|
134 |
-
),
|
135 |
-
"
|
136 |
-
"name" => "
|
137 |
-
"icon" => "
|
138 |
-
"color" => "
|
139 |
-
),
|
140 |
-
"
|
141 |
-
"name" => "
|
142 |
-
"icon" => "
|
143 |
-
"color" => "
|
144 |
-
),
|
145 |
-
"
|
146 |
-
"name" => "
|
147 |
-
"icon" => "
|
148 |
-
"color" => "
|
149 |
-
),
|
150 |
-
"
|
151 |
-
"name" => "
|
152 |
-
"icon" => "
|
153 |
-
"color" => "
|
154 |
-
),
|
155 |
-
"
|
156 |
-
"name" => "
|
157 |
-
"icon" => "
|
158 |
-
"color" => "
|
159 |
-
),
|
160 |
-
"
|
161 |
-
"name" => "
|
162 |
-
"icon" => "
|
163 |
-
"color" => "
|
164 |
-
),
|
165 |
-
"
|
166 |
-
"name" => "
|
167 |
-
"icon" => "
|
168 |
-
"color" => "
|
169 |
-
),
|
170 |
-
"
|
171 |
-
"name" => "
|
172 |
-
"icon" => "
|
173 |
-
"color" => "
|
174 |
-
),
|
175 |
-
"
|
176 |
-
"name" => "
|
177 |
-
"icon" => "
|
178 |
-
"color" => "
|
179 |
-
),
|
180 |
-
"
|
181 |
-
"name" => "
|
182 |
-
"icon" => "
|
183 |
-
"color" => "
|
184 |
-
),
|
185 |
-
"
|
186 |
-
"name" => "
|
187 |
-
"icon" => "
|
188 |
-
"color" => "
|
189 |
-
),
|
190 |
-
"
|
191 |
-
"name" => "
|
192 |
-
"icon" => "
|
193 |
-
"color" => "
|
194 |
-
),
|
195 |
-
"
|
196 |
-
"name" => "
|
197 |
-
"icon" => "
|
198 |
-
"color" => "
|
199 |
-
),
|
200 |
-
"
|
201 |
-
"name" => "
|
202 |
-
"icon" => "
|
203 |
-
"color" => "
|
204 |
-
),
|
205 |
-
"
|
206 |
-
"name" => "
|
207 |
-
"icon" => "
|
208 |
-
"color" => "
|
209 |
-
),
|
210 |
-
"
|
211 |
-
"name" => "
|
212 |
-
"icon" => "
|
213 |
-
"color" => "
|
214 |
-
),
|
215 |
-
"
|
216 |
-
"name" => "Google
|
217 |
-
"icon" => "
|
218 |
-
"color" => "
|
219 |
-
),
|
220 |
-
"
|
221 |
-
"name" => "
|
222 |
-
"icon" => "
|
223 |
-
"color" => "
|
224 |
-
),
|
225 |
-
"
|
226 |
-
"name" => "
|
227 |
-
"icon" => "
|
228 |
-
"color" => "
|
229 |
-
),
|
230 |
-
"
|
231 |
-
"name" => "
|
232 |
-
"icon" => "
|
233 |
-
"color" => "
|
234 |
-
),
|
235 |
-
"
|
236 |
-
"name" => "
|
237 |
-
"icon" => "
|
238 |
-
"color" => "
|
239 |
-
),
|
240 |
-
"
|
241 |
-
"name" => "
|
242 |
-
"icon" => "
|
243 |
-
"color" => "
|
244 |
-
),
|
245 |
-
"
|
246 |
-
"name" => "
|
247 |
-
"icon" => "
|
248 |
-
"color" => "
|
249 |
-
),
|
250 |
-
"
|
251 |
-
"name" => "
|
252 |
-
"icon" => "
|
253 |
-
"color" => "
|
254 |
-
),
|
255 |
-
"
|
256 |
-
"name" => "
|
257 |
-
"icon" => "
|
258 |
-
"color" => "2A2A2A",
|
259 |
-
),
|
260 |
-
"
|
261 |
-
"name" => "
|
262 |
-
"icon" => "
|
263 |
-
"color" => "2A2A2A",
|
264 |
-
),
|
265 |
-
"
|
266 |
-
"name" => "
|
267 |
-
"icon" => "
|
268 |
-
"color" => "
|
269 |
-
),
|
270 |
-
"
|
271 |
-
"name" => "
|
272 |
-
"icon" => "
|
273 |
-
"color" => "
|
274 |
-
),
|
275 |
-
"
|
276 |
-
"name" => "
|
277 |
-
"icon" => "
|
278 |
-
"color" => "
|
279 |
-
),
|
280 |
-
"
|
281 |
-
"name" => "
|
282 |
-
"icon" => "
|
283 |
-
"color" => "
|
284 |
-
),
|
285 |
-
"
|
286 |
-
"name" => "
|
287 |
-
"icon" => "
|
288 |
-
"color" => "
|
289 |
-
),
|
290 |
-
"
|
291 |
-
"name" => "
|
292 |
-
"icon" => "
|
293 |
-
"color" => "
|
294 |
-
),
|
295 |
-
"
|
296 |
-
"name" => "
|
297 |
-
"icon" => "
|
298 |
-
"color" => "
|
299 |
-
),
|
300 |
-
"
|
301 |
-
"name" => "
|
302 |
-
"icon" => "
|
303 |
-
"color" => "2A2A2A",
|
304 |
-
),
|
305 |
-
"
|
306 |
-
"name" => "
|
307 |
-
"icon" => "
|
308 |
-
"color" => "
|
309 |
-
),
|
310 |
-
"
|
311 |
-
"name" => "
|
312 |
-
"icon" => "
|
313 |
-
"color" => "
|
314 |
-
),
|
315 |
-
"
|
316 |
-
"name" => "
|
317 |
-
"icon" => "
|
318 |
-
"color" => "
|
319 |
-
),
|
320 |
-
"
|
321 |
-
"name" => "
|
322 |
-
"icon" => "
|
323 |
-
"color" => "
|
324 |
-
),
|
325 |
-
"
|
326 |
-
"name" => "
|
327 |
-
"icon" => "
|
328 |
-
"color" => "
|
329 |
-
),
|
330 |
-
"
|
331 |
-
"name" => "
|
332 |
-
"icon" => "
|
333 |
-
"color" => "
|
334 |
-
),
|
335 |
-
"
|
336 |
-
"name" => "
|
337 |
-
"icon" => "
|
338 |
-
"color" => "
|
339 |
-
),
|
340 |
-
"
|
341 |
-
"name" => "
|
342 |
-
"icon" => "
|
343 |
-
"color" => "
|
344 |
-
),
|
345 |
-
"
|
346 |
-
"name" => "
|
347 |
-
"icon" => "
|
348 |
-
"color" => "
|
349 |
-
),
|
350 |
-
"
|
351 |
-
"name" => "
|
352 |
-
"icon" => "
|
353 |
-
"color" => "
|
354 |
-
),
|
355 |
-
"
|
356 |
-
"name" => "
|
357 |
-
"icon" => "
|
358 |
-
"color" => "
|
359 |
-
),
|
360 |
-
"
|
361 |
-
"name" => "
|
362 |
-
"icon" => "
|
363 |
-
"color" => "
|
364 |
-
),
|
365 |
-
"
|
366 |
-
"name" => "
|
367 |
-
"icon" => "
|
368 |
-
"color" => "
|
369 |
-
),
|
370 |
-
"
|
371 |
-
"name" => "
|
372 |
-
"icon" => "
|
373 |
-
"color" => "
|
374 |
-
),
|
375 |
-
"
|
376 |
-
"name" => "
|
377 |
-
"icon" => "
|
378 |
-
"color" => "
|
379 |
-
),
|
380 |
-
"
|
381 |
-
"name" => "
|
382 |
-
"icon" => "
|
383 |
-
"color" => "
|
384 |
-
),
|
385 |
-
"
|
386 |
-
"name" => "
|
387 |
-
"icon" => "
|
388 |
-
"color" => "
|
389 |
-
),
|
390 |
-
"
|
391 |
-
"name" => "
|
392 |
-
"icon" => "
|
393 |
-
"color" => "
|
394 |
-
),
|
395 |
-
"
|
396 |
-
"name" => "
|
397 |
-
"icon" => "
|
398 |
-
"color" => "
|
399 |
-
),
|
400 |
-
"
|
401 |
-
"name" => "
|
402 |
-
"icon" => "
|
403 |
-
"color" => "
|
404 |
-
),
|
405 |
-
"
|
406 |
-
"name" => "
|
407 |
-
"icon" => "
|
408 |
-
"color" => "
|
409 |
-
),
|
410 |
-
"
|
411 |
-
"name" => "
|
412 |
-
"icon" => "
|
413 |
-
"color" => "
|
414 |
-
),
|
415 |
-
"
|
416 |
-
"name" => "
|
417 |
-
"icon" => "
|
418 |
-
"color" => "
|
419 |
-
),
|
420 |
-
"
|
421 |
-
"name" => "
|
422 |
-
"icon" => "
|
423 |
-
"color" => "
|
424 |
-
),
|
425 |
-
"
|
426 |
-
"name" => "
|
427 |
-
"icon" => "
|
428 |
-
"color" => "
|
429 |
-
),
|
430 |
-
"
|
431 |
-
"name" => "
|
432 |
-
"icon" => "
|
433 |
-
"color" => "
|
434 |
-
),
|
435 |
-
"stumbleupon" => array(
|
436 |
-
"name" => "StumbleUpon",
|
437 |
-
"icon" => "stumbleupon",
|
438 |
-
"color" => "EF4E23",
|
439 |
-
),
|
440 |
-
"stumpedia" => array(
|
441 |
-
"name" => "Stumpedia",
|
442 |
-
"icon" => "stumpedia",
|
443 |
-
"color" => "FFC808",
|
444 |
-
),
|
445 |
-
"svejo" => array(
|
446 |
-
"name" => "Svejo",
|
447 |
-
"icon" => "svejo",
|
448 |
-
"color" => "5BD428",
|
449 |
-
),
|
450 |
-
"symbaloo_feeds" => array(
|
451 |
-
"name" => "Symbaloo Feeds",
|
452 |
-
"icon" => "symbaloo",
|
453 |
-
"color" => "6DA8F7",
|
454 |
-
),
|
455 |
-
"telegram" => array(
|
456 |
-
"name" => "Telegram",
|
457 |
-
"icon" => "telegram",
|
458 |
-
"color" => "2CA5E0",
|
459 |
-
),
|
460 |
-
"
|
461 |
-
"name" => "
|
462 |
-
"icon" => "
|
463 |
-
"color" => "
|
464 |
-
),
|
465 |
-
"
|
466 |
-
"name" => "
|
467 |
-
"icon" => "
|
468 |
-
"color" => "
|
469 |
-
),
|
470 |
-
"
|
471 |
-
"name" => "
|
472 |
-
"icon" => "
|
473 |
-
"color" => "
|
474 |
-
),
|
475 |
-
"
|
476 |
-
"name" => "
|
477 |
-
"icon" => "
|
478 |
-
"color" => "
|
479 |
-
),
|
480 |
-
"
|
481 |
-
"name" => "
|
482 |
-
"icon" => "
|
483 |
-
"color" => "
|
484 |
-
),
|
485 |
-
"
|
486 |
-
"name" => "
|
487 |
-
"icon" => "
|
488 |
-
"color" => "
|
489 |
-
),
|
490 |
-
"
|
491 |
-
"name" => "
|
492 |
-
"icon" => "
|
493 |
-
"color" => "
|
494 |
-
),
|
495 |
-
"
|
496 |
-
"name" => "
|
497 |
-
"icon" => "
|
498 |
-
"color" => "
|
499 |
-
),
|
500 |
-
"
|
501 |
-
"name" => "
|
502 |
-
"icon" => "
|
503 |
-
"color" => "
|
504 |
-
),
|
505 |
-
"
|
506 |
-
"name" => "
|
507 |
-
"icon" => "
|
508 |
-
"color" => "
|
509 |
-
),
|
510 |
-
"
|
511 |
-
"name" => "
|
512 |
-
"icon" => "
|
513 |
-
"color" => "
|
514 |
-
),
|
515 |
-
"
|
516 |
-
"name" => "
|
517 |
-
"icon" => "
|
518 |
-
"color" => "
|
519 |
-
),
|
520 |
-
"
|
521 |
-
"name" => "
|
522 |
-
"icon" => "
|
523 |
-
"color" => "
|
524 |
-
),
|
525 |
-
"
|
526 |
-
"name" => "
|
527 |
-
"icon" => "
|
528 |
-
"color" => "
|
529 |
-
),
|
530 |
-
"
|
531 |
-
"name" => "Yahoo
|
532 |
-
"icon" => "yahoo",
|
533 |
-
"color" => "400090",
|
534 |
-
),
|
535 |
-
"
|
536 |
-
"name" => "Yahoo
|
537 |
-
"icon" => "
|
538 |
-
"color" => "400090",
|
539 |
-
),
|
540 |
-
"
|
541 |
-
"name" => "
|
542 |
-
"icon" => "
|
543 |
-
"color" => "
|
544 |
-
),
|
545 |
-
"
|
546 |
-
"name" => "
|
547 |
-
"icon" => "
|
548 |
-
"color" => "
|
549 |
-
),
|
550 |
-
"
|
551 |
-
"name" => "
|
552 |
-
"icon" => "
|
553 |
-
"color" => "
|
554 |
-
),
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
'
|
568 |
-
'
|
569 |
-
'
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
'
|
574 |
-
'
|
575 |
-
'
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
'
|
580 |
-
'
|
581 |
-
'
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
'
|
586 |
-
'
|
587 |
-
'
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
'
|
592 |
-
'
|
593 |
-
'
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
'
|
598 |
-
'
|
599 |
-
'
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
'
|
604 |
-
'
|
605 |
-
'
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
'
|
610 |
-
'
|
611 |
-
'
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
'
|
616 |
-
'
|
617 |
-
'
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
'
|
622 |
-
'
|
623 |
-
'
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
'
|
628 |
-
'
|
629 |
-
'
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
'
|
634 |
-
'
|
635 |
-
'
|
636 |
-
|
637 |
-
|
638 |
-
|
639 |
-
'
|
640 |
-
'
|
641 |
-
'
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
'
|
646 |
-
'
|
647 |
-
'
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
'
|
652 |
-
'
|
653 |
-
'
|
654 |
-
|
655 |
-
|
656 |
-
|
657 |
-
'
|
658 |
-
'
|
659 |
-
'
|
660 |
-
|
661 |
-
|
662 |
-
|
|
|
|
|
|
|
|
|
|
|
663 |
);
|
1 |
+
<?php
|
2 |
+
|
3 |
+
$A2A_SHARE_SAVE_services = array(
|
4 |
+
|
5 |
+
"facebook" => array(
|
6 |
+
"name" => "Facebook",
|
7 |
+
"icon" => "facebook",
|
8 |
+
"color" => "3B5998",
|
9 |
+
),
|
10 |
+
"twitter" => array(
|
11 |
+
"name" => "Twitter",
|
12 |
+
"icon" => "twitter",
|
13 |
+
"color" => "55ACEE",
|
14 |
+
),
|
15 |
+
"google_plus" => array(
|
16 |
+
"name" => "Google+",
|
17 |
+
"icon" => "google_plus",
|
18 |
+
"color" => "DD4B39",
|
19 |
+
),
|
20 |
+
"pinterest" => array(
|
21 |
+
"name" => "Pinterest",
|
22 |
+
"icon" => "pinterest",
|
23 |
+
"color" => "BD081C",
|
24 |
+
),
|
25 |
+
"email" => array(
|
26 |
+
"name" => "Email",
|
27 |
+
"icon" => "email",
|
28 |
+
"color" => "0166FF",
|
29 |
+
),
|
30 |
+
"tumblr" => array(
|
31 |
+
"name" => "Tumblr",
|
32 |
+
"icon" => "tumblr",
|
33 |
+
"color" => "35465C",
|
34 |
+
),
|
35 |
+
"reddit" => array(
|
36 |
+
"name" => "Reddit",
|
37 |
+
"icon" => "reddit",
|
38 |
+
"color" => "ff4500",
|
39 |
+
),
|
40 |
+
"linkedin" => array(
|
41 |
+
"name" => "LinkedIn",
|
42 |
+
"icon" => "linkedin",
|
43 |
+
"color" => "007BB5",
|
44 |
+
),
|
45 |
+
"whatsapp" => array(
|
46 |
+
"name" => "WhatsApp",
|
47 |
+
"icon" => "whatsapp",
|
48 |
+
"color" => "12AF0A",
|
49 |
+
),
|
50 |
+
"aim" => array(
|
51 |
+
"name" => "AIM",
|
52 |
+
"icon" => "aim",
|
53 |
+
"color" => "00C2FF",
|
54 |
+
),
|
55 |
+
"amazon_wish_list" => array(
|
56 |
+
"name" => "Amazon Wish List",
|
57 |
+
"icon" => "amazon",
|
58 |
+
"color" => "F90",
|
59 |
+
),
|
60 |
+
"aol_mail" => array(
|
61 |
+
"name" => "AOL Mail",
|
62 |
+
"icon" => "aol",
|
63 |
+
"color" => "2A2A2A",
|
64 |
+
),
|
65 |
+
"balatarin" => array(
|
66 |
+
"name" => "Balatarin",
|
67 |
+
"icon" => "balatarin",
|
68 |
+
"color" => "079948",
|
69 |
+
),
|
70 |
+
"bibsonomy" => array(
|
71 |
+
"name" => "BibSonomy",
|
72 |
+
"icon" => "bibsonomy",
|
73 |
+
"color" => "2A2A2A",
|
74 |
+
),
|
75 |
+
"bitty_browser" => array(
|
76 |
+
"name" => "Bitty Browser",
|
77 |
+
"icon" => "bitty",
|
78 |
+
"color" => "999",
|
79 |
+
),
|
80 |
+
"blinklist" => array(
|
81 |
+
"name" => "Blinklist",
|
82 |
+
"icon" => "blinklist",
|
83 |
+
"color" => "3D3C3B",
|
84 |
+
),
|
85 |
+
"blogger_post" => array(
|
86 |
+
"name" => "Blogger Post",
|
87 |
+
"icon" => "blogger",
|
88 |
+
"color" => "FDA352",
|
89 |
+
),
|
90 |
+
"blogmarks" => array(
|
91 |
+
"name" => "BlogMarks",
|
92 |
+
"icon" => "blogmarks",
|
93 |
+
"color" => "535353",
|
94 |
+
),
|
95 |
+
"bookmarks_fr" => array(
|
96 |
+
"name" => "Bookmarks.fr",
|
97 |
+
"icon" => "bookmarks_fr",
|
98 |
+
"color" => "96C044",
|
99 |
+
),
|
100 |
+
"box_net" => array(
|
101 |
+
"name" => "Box.net",
|
102 |
+
"icon" => "box",
|
103 |
+
"color" => "1A74B0",
|
104 |
+
),
|
105 |
+
"buddymarks" => array(
|
106 |
+
"name" => "BuddyMarks",
|
107 |
+
"icon" => "buddymarks",
|
108 |
+
"color" => "96C044",
|
109 |
+
),
|
110 |
+
"buffer" => array(
|
111 |
+
"name" => "Buffer",
|
112 |
+
"icon" => "buffer",
|
113 |
+
"color" => "2A2A2A",
|
114 |
+
),
|
115 |
+
"care2_news" => array(
|
116 |
+
"name" => "Care2 News",
|
117 |
+
"icon" => "care2",
|
118 |
+
"color" => "6EB43F",
|
119 |
+
),
|
120 |
+
"citeulike" => array(
|
121 |
+
"name" => "CiteULike",
|
122 |
+
"icon" => "citeulike",
|
123 |
+
"color" => "2781CD",
|
124 |
+
),
|
125 |
+
"copy_link" => array(
|
126 |
+
"name" => "Copy Link",
|
127 |
+
"icon" => "link",
|
128 |
+
"color" => "0166FF",
|
129 |
+
),
|
130 |
+
"delicious" => array(
|
131 |
+
"name" => "Delicious",
|
132 |
+
"icon" => "delicious",
|
133 |
+
"color" => "39F",
|
134 |
+
),
|
135 |
+
"design_float" => array(
|
136 |
+
"name" => "Design Float",
|
137 |
+
"icon" => "designfloat",
|
138 |
+
"color" => "8AC8FF",
|
139 |
+
),
|
140 |
+
"diary_ru" => array(
|
141 |
+
"name" => "Diary.Ru",
|
142 |
+
"icon" => "diary_ru",
|
143 |
+
"color" => "912D31",
|
144 |
+
),
|
145 |
+
"diaspora" => array(
|
146 |
+
"name" => "Diaspora",
|
147 |
+
"icon" => "diaspora",
|
148 |
+
"color" => "2E3436",
|
149 |
+
),
|
150 |
+
"digg" => array(
|
151 |
+
"name" => "Digg",
|
152 |
+
"icon" => "digg",
|
153 |
+
"color" => "2A2A2A",
|
154 |
+
),
|
155 |
+
"dihitt" => array(
|
156 |
+
"name" => "diHITT",
|
157 |
+
"icon" => "dihitt",
|
158 |
+
"color" => "FF6300",
|
159 |
+
),
|
160 |
+
"diigo" => array(
|
161 |
+
"name" => "Diigo",
|
162 |
+
"icon" => "diigo",
|
163 |
+
"color" => "4A8BCA",
|
164 |
+
),
|
165 |
+
"douban" => array(
|
166 |
+
"name" => "Douban",
|
167 |
+
"icon" => "douban",
|
168 |
+
"color" => "071",
|
169 |
+
),
|
170 |
+
"draugiem" => array(
|
171 |
+
"name" => "Draugiem",
|
172 |
+
"icon" => "draugiem",
|
173 |
+
"color" => "F60",
|
174 |
+
),
|
175 |
+
"dzone" => array(
|
176 |
+
"name" => "DZone",
|
177 |
+
"icon" => "dzone",
|
178 |
+
"color" => "82C251",
|
179 |
+
),
|
180 |
+
"evernote" => array(
|
181 |
+
"name" => "Evernote",
|
182 |
+
"icon" => "evernote",
|
183 |
+
"color" => "8BE056",
|
184 |
+
),
|
185 |
+
"facebook_messenger" => array(
|
186 |
+
"name" => "Facebook Messenger",
|
187 |
+
"icon" => "facebook_messenger",
|
188 |
+
"color" => "0084FF",
|
189 |
+
),
|
190 |
+
"fark" => array(
|
191 |
+
"name" => "Fark",
|
192 |
+
"icon" => "fark",
|
193 |
+
"color" => "555",
|
194 |
+
),
|
195 |
+
"flipboard" => array(
|
196 |
+
"name" => "Flipboard",
|
197 |
+
"icon" => "flipboard",
|
198 |
+
"color" => "C00",
|
199 |
+
),
|
200 |
+
"folkd" => array(
|
201 |
+
"name" => "Folkd",
|
202 |
+
"icon" => "folkd",
|
203 |
+
"color" => "0F70B2",
|
204 |
+
),
|
205 |
+
"google_bookmarks" => array(
|
206 |
+
"name" => "Google Bookmarks",
|
207 |
+
"icon" => "google",
|
208 |
+
"color" => "4285F4",
|
209 |
+
),
|
210 |
+
"google_classroom" => array(
|
211 |
+
"name" => "Google Classroom",
|
212 |
+
"icon" => "google_classroom",
|
213 |
+
"color" => "FFC112",
|
214 |
+
),
|
215 |
+
"google_gmail" => array(
|
216 |
+
"name" => "Google Gmail",
|
217 |
+
"icon" => "gmail",
|
218 |
+
"color" => "DD5347",
|
219 |
+
),
|
220 |
+
"hacker_news" => array(
|
221 |
+
"name" => "Hacker News",
|
222 |
+
"icon" => "y18",
|
223 |
+
"color" => "F60",
|
224 |
+
),
|
225 |
+
"hatena" => array(
|
226 |
+
"name" => "Hatena",
|
227 |
+
"icon" => "hatena",
|
228 |
+
"color" => "00A6DB",
|
229 |
+
),
|
230 |
+
"houzz" => array(
|
231 |
+
"name" => "Houzz",
|
232 |
+
"icon" => "houzz",
|
233 |
+
"color" => "7AC143",
|
234 |
+
),
|
235 |
+
"instapaper" => array(
|
236 |
+
"name" => "Instapaper",
|
237 |
+
"icon" => "instapaper",
|
238 |
+
"color" => "2A2A2A",
|
239 |
+
),
|
240 |
+
"jamespot" => array(
|
241 |
+
"name" => "Jamespot",
|
242 |
+
"icon" => "jamespot",
|
243 |
+
"color" => "FF9E2C",
|
244 |
+
),
|
245 |
+
"kakao" => array(
|
246 |
+
"name" => "Kakao",
|
247 |
+
"icon" => "kakao",
|
248 |
+
"color" => "FCB700",
|
249 |
+
),
|
250 |
+
"kik" => array(
|
251 |
+
"name" => "Kik",
|
252 |
+
"icon" => "kik",
|
253 |
+
"color" => "2A2A2A",
|
254 |
+
),
|
255 |
+
"kindle_it" => array(
|
256 |
+
"name" => "Kindle It",
|
257 |
+
"icon" => "kindle",
|
258 |
+
"color" => "2A2A2A",
|
259 |
+
),
|
260 |
+
"known" => array(
|
261 |
+
"name" => "Known",
|
262 |
+
"icon" => "known",
|
263 |
+
"color" => "2A2A2A",
|
264 |
+
),
|
265 |
+
"line" => array(
|
266 |
+
"name" => "Line",
|
267 |
+
"icon" => "line",
|
268 |
+
"color" => "00C300",
|
269 |
+
),
|
270 |
+
"livejournal" => array(
|
271 |
+
"name" => "LiveJournal",
|
272 |
+
"icon" => "livejournal",
|
273 |
+
"color" => "113140",
|
274 |
+
),
|
275 |
+
"mail_ru" => array(
|
276 |
+
"name" => "Mail.Ru",
|
277 |
+
"icon" => "mail_ru",
|
278 |
+
"color" => "356FAC",
|
279 |
+
),
|
280 |
+
"mendeley" => array(
|
281 |
+
"name" => "Mendeley",
|
282 |
+
"icon" => "mendeley",
|
283 |
+
"color" => "A70805",
|
284 |
+
),
|
285 |
+
"meneame" => array(
|
286 |
+
"name" => "Meneame",
|
287 |
+
"icon" => "meneame",
|
288 |
+
"color" => "FF7D12",
|
289 |
+
),
|
290 |
+
"mixi" => array(
|
291 |
+
"name" => "Mixi",
|
292 |
+
"icon" => "mixi",
|
293 |
+
"color" => "D1AD5A",
|
294 |
+
),
|
295 |
+
"myspace" => array(
|
296 |
+
"name" => "MySpace",
|
297 |
+
"icon" => "myspace",
|
298 |
+
"color" => "2A2A2A",
|
299 |
+
),
|
300 |
+
"netlog" => array(
|
301 |
+
"name" => "Netlog",
|
302 |
+
"icon" => "netlog",
|
303 |
+
"color" => "2A2A2A",
|
304 |
+
),
|
305 |
+
"netvouz" => array(
|
306 |
+
"name" => "Netvouz",
|
307 |
+
"icon" => "netvouz",
|
308 |
+
"color" => "6C3",
|
309 |
+
),
|
310 |
+
"newsvine" => array(
|
311 |
+
"name" => "NewsVine",
|
312 |
+
"icon" => "newsvine",
|
313 |
+
"color" => "055D00",
|
314 |
+
),
|
315 |
+
"nujij" => array(
|
316 |
+
"name" => "NUjij",
|
317 |
+
"icon" => "nujij",
|
318 |
+
"color" => "D40000",
|
319 |
+
),
|
320 |
+
"odnoklassniki" => array(
|
321 |
+
"name" => "Odnoklassniki",
|
322 |
+
"icon" => "odnoklassniki",
|
323 |
+
"color" => "F2720C",
|
324 |
+
),
|
325 |
+
"oknotizie" => array(
|
326 |
+
"name" => "Oknotizie",
|
327 |
+
"icon" => "oknotizie",
|
328 |
+
"color" => "88D32D",
|
329 |
+
),
|
330 |
+
"outlook_com" => array(
|
331 |
+
"name" => "Outlook.com",
|
332 |
+
"icon" => "outlook_com",
|
333 |
+
"color" => "0072C6",
|
334 |
+
),
|
335 |
+
"papaly" => array(
|
336 |
+
"name" => "Papaly",
|
337 |
+
"icon" => "papaly",
|
338 |
+
"color" => "3AC0F6",
|
339 |
+
),
|
340 |
+
"pinboard" => array(
|
341 |
+
"name" => "Pinboard",
|
342 |
+
"icon" => "pinboard",
|
343 |
+
"color" => "1341DE",
|
344 |
+
),
|
345 |
+
"plurk" => array(
|
346 |
+
"name" => "Plurk",
|
347 |
+
"icon" => "plurk",
|
348 |
+
"color" => "CF682F",
|
349 |
+
),
|
350 |
+
"pocket" => array(
|
351 |
+
"name" => "Pocket",
|
352 |
+
"icon" => "pocket",
|
353 |
+
"color" => "EE4056",
|
354 |
+
),
|
355 |
+
"polyvore" => array(
|
356 |
+
"name" => "Polyvore",
|
357 |
+
"icon" => "polyvore",
|
358 |
+
"color" => "2A2A2A",
|
359 |
+
),
|
360 |
+
"print" => array(
|
361 |
+
"name" => "Print",
|
362 |
+
"icon" => "print",
|
363 |
+
"color" => "0166FF",
|
364 |
+
),
|
365 |
+
"printfriendly" => array(
|
366 |
+
"name" => "PrintFriendly",
|
367 |
+
"icon" => "printfriendly",
|
368 |
+
"color" => "6D9F00",
|
369 |
+
),
|
370 |
+
"protopage_bookmarks" => array(
|
371 |
+
"name" => "Protopage Bookmarks",
|
372 |
+
"icon" => "protopage",
|
373 |
+
"color" => "413FFF",
|
374 |
+
),
|
375 |
+
"pusha" => array(
|
376 |
+
"name" => "Pusha",
|
377 |
+
"icon" => "pusha",
|
378 |
+
"color" => "0072B8",
|
379 |
+
),
|
380 |
+
"qzone" => array(
|
381 |
+
"name" => "Qzone",
|
382 |
+
"icon" => "qzone",
|
383 |
+
"color" => "2B82D9",
|
384 |
+
),
|
385 |
+
"rediff" => array(
|
386 |
+
"name" => "Rediff MyPage",
|
387 |
+
"icon" => "rediff",
|
388 |
+
"color" => "D20000",
|
389 |
+
),
|
390 |
+
"refind" => array(
|
391 |
+
"name" => "Refind",
|
392 |
+
"icon" => "refind",
|
393 |
+
"color" => "1492ef",
|
394 |
+
),
|
395 |
+
"renren" => array(
|
396 |
+
"name" => "Renren",
|
397 |
+
"icon" => "renren",
|
398 |
+
"color" => "005EAC",
|
399 |
+
),
|
400 |
+
"segnalo" => array(
|
401 |
+
"name" => "Segnalo",
|
402 |
+
"icon" => "segnalo",
|
403 |
+
"color" => "FF6500",
|
404 |
+
),
|
405 |
+
"sina_weibo" => array(
|
406 |
+
"name" => "Sina Weibo",
|
407 |
+
"icon" => "sina_weibo",
|
408 |
+
"color" => "E6162D",
|
409 |
+
),
|
410 |
+
"sitejot" => array(
|
411 |
+
"name" => "SiteJot",
|
412 |
+
"icon" => "sitejot",
|
413 |
+
"color" => "FFC808",
|
414 |
+
),
|
415 |
+
"skype" => array(
|
416 |
+
"name" => "Skype",
|
417 |
+
"icon" => "skype",
|
418 |
+
"color" => "00AFF0",
|
419 |
+
),
|
420 |
+
"slashdot" => array(
|
421 |
+
"name" => "Slashdot",
|
422 |
+
"icon" => "slashdot",
|
423 |
+
"color" => "004242",
|
424 |
+
),
|
425 |
+
"sms" => array(
|
426 |
+
"name" => "SMS",
|
427 |
+
"icon" => "sms",
|
428 |
+
"color" => "6CBE45",
|
429 |
+
),
|
430 |
+
"stocktwits" => array(
|
431 |
+
"name" => "StockTwits",
|
432 |
+
"icon" => "stocktwits",
|
433 |
+
"color" => "40576F",
|
434 |
+
),
|
435 |
+
"stumbleupon" => array(
|
436 |
+
"name" => "StumbleUpon",
|
437 |
+
"icon" => "stumbleupon",
|
438 |
+
"color" => "EF4E23",
|
439 |
+
),
|
440 |
+
"stumpedia" => array(
|
441 |
+
"name" => "Stumpedia",
|
442 |
+
"icon" => "stumpedia",
|
443 |
+
"color" => "FFC808",
|
444 |
+
),
|
445 |
+
"svejo" => array(
|
446 |
+
"name" => "Svejo",
|
447 |
+
"icon" => "svejo",
|
448 |
+
"color" => "5BD428",
|
449 |
+
),
|
450 |
+
"symbaloo_feeds" => array(
|
451 |
+
"name" => "Symbaloo Feeds",
|
452 |
+
"icon" => "symbaloo",
|
453 |
+
"color" => "6DA8F7",
|
454 |
+
),
|
455 |
+
"telegram" => array(
|
456 |
+
"name" => "Telegram",
|
457 |
+
"icon" => "telegram",
|
458 |
+
"color" => "2CA5E0",
|
459 |
+
),
|
460 |
+
"threema" => array(
|
461 |
+
"name" => "Threema",
|
462 |
+
"icon" => "threema",
|
463 |
+
"color" => "2A2A2A",
|
464 |
+
),
|
465 |
+
"trello" => array(
|
466 |
+
"name" => "Trello",
|
467 |
+
"icon" => "trello",
|
468 |
+
"color" => "0079BF",
|
469 |
+
),
|
470 |
+
"tuenti" => array(
|
471 |
+
"name" => "Tuenti",
|
472 |
+
"icon" => "tuenti",
|
473 |
+
"color" => "0075C9",
|
474 |
+
),
|
475 |
+
"twiddla" => array(
|
476 |
+
"name" => "Twiddla",
|
477 |
+
"icon" => "twiddla",
|
478 |
+
"color" => "2A2A2A",
|
479 |
+
),
|
480 |
+
"typepad_post" => array(
|
481 |
+
"name" => "TypePad Post",
|
482 |
+
"icon" => "typepad",
|
483 |
+
"color" => "D2DE61",
|
484 |
+
),
|
485 |
+
"viadeo" => array(
|
486 |
+
"name" => "Viadeo",
|
487 |
+
"icon" => "viadeo",
|
488 |
+
"color" => "2A2A2A",
|
489 |
+
),
|
490 |
+
"viber" => array(
|
491 |
+
"name" => "Viber",
|
492 |
+
"icon" => "viber",
|
493 |
+
"color" => "7C529E",
|
494 |
+
),
|
495 |
+
"vk" => array(
|
496 |
+
"name" => "VK",
|
497 |
+
"icon" => "vk",
|
498 |
+
"color" => "587EA3",
|
499 |
+
),
|
500 |
+
"wanelo" => array(
|
501 |
+
"name" => "Wanelo",
|
502 |
+
"icon" => "wanelo",
|
503 |
+
"color" => "9cb092",
|
504 |
+
),
|
505 |
+
"webnews" => array(
|
506 |
+
"name" => "Webnews",
|
507 |
+
"icon" => "webnews",
|
508 |
+
"color" => "CC2512",
|
509 |
+
),
|
510 |
+
"wechat" => array(
|
511 |
+
"name" => "WeChat",
|
512 |
+
"icon" => "wechat",
|
513 |
+
"color" => "7BB32E",
|
514 |
+
),
|
515 |
+
"wordpress" => array(
|
516 |
+
"name" => "WordPress",
|
517 |
+
"icon" => "wordpress",
|
518 |
+
"color" => "464646",
|
519 |
+
),
|
520 |
+
"wykop" => array(
|
521 |
+
"name" => "Wykop",
|
522 |
+
"icon" => "wykop",
|
523 |
+
"color" => "367DA9",
|
524 |
+
),
|
525 |
+
"xing" => array(
|
526 |
+
"name" => "XING",
|
527 |
+
"icon" => "xing",
|
528 |
+
"color" => "165B66",
|
529 |
+
),
|
530 |
+
"yahoo_bookmarks" => array(
|
531 |
+
"name" => "Yahoo Bookmarks",
|
532 |
+
"icon" => "yahoo",
|
533 |
+
"color" => "400090",
|
534 |
+
),
|
535 |
+
"yahoo_mail" => array(
|
536 |
+
"name" => "Yahoo Mail",
|
537 |
+
"icon" => "yahoo",
|
538 |
+
"color" => "400090",
|
539 |
+
),
|
540 |
+
"yahoo_messenger" => array(
|
541 |
+
"name" => "Yahoo Messenger",
|
542 |
+
"icon" => "yim",
|
543 |
+
"color" => "400090",
|
544 |
+
),
|
545 |
+
"yoolink" => array(
|
546 |
+
"name" => "Yoolink",
|
547 |
+
"icon" => "yoolink",
|
548 |
+
"color" => "A2C538",
|
549 |
+
),
|
550 |
+
"youmob" => array(
|
551 |
+
"name" => "YouMob",
|
552 |
+
"icon" => "youmob",
|
553 |
+
"color" => "3B599D",
|
554 |
+
),
|
555 |
+
"yummly" => array(
|
556 |
+
"name" => "Yummly",
|
557 |
+
"icon" => "yummly",
|
558 |
+
"color" => "E16120",
|
559 |
+
),
|
560 |
+
|
561 |
+
);
|
562 |
+
|
563 |
+
$A2A_FOLLOW_services = array(
|
564 |
+
|
565 |
+
'facebook' => array(
|
566 |
+
'name' => 'Facebook',
|
567 |
+
'href' => 'https://www.facebook.com/${id}',
|
568 |
+
'icon' => 'facebook',
|
569 |
+
'color' => '3B5998',
|
570 |
+
),
|
571 |
+
'twitter' => array(
|
572 |
+
'name' => 'Twitter',
|
573 |
+
'href' => 'https://twitter.com/${id}',
|
574 |
+
'icon' => 'twitter',
|
575 |
+
'color' => '55ACEE',
|
576 |
+
),
|
577 |
+
'instagram' => array(
|
578 |
+
'name' => 'Instagram',
|
579 |
+
'href' => 'https://www.instagram.com/${id}',
|
580 |
+
'icon' => 'instagram',
|
581 |
+
'color' => 'E4405F',
|
582 |
+
),
|
583 |
+
'pinterest' => array(
|
584 |
+
'name' => 'Pinterest',
|
585 |
+
'href' => 'https://www.pinterest.com/${id}',
|
586 |
+
'icon' => 'pinterest',
|
587 |
+
'color' => 'BD081C',
|
588 |
+
),
|
589 |
+
'behance' => array(
|
590 |
+
'name' => 'Behance',
|
591 |
+
'href' => 'https://www.behance.net/${id}',
|
592 |
+
'icon' => 'behance',
|
593 |
+
'color' => '007EFF',
|
594 |
+
),
|
595 |
+
'flickr' => array(
|
596 |
+
'name' => 'Flickr',
|
597 |
+
'href' => 'https://www.flickr.com/photos/${id}',
|
598 |
+
'icon' => 'flickr',
|
599 |
+
'color' => 'FF0084',
|
600 |
+
),
|
601 |
+
'foursquare' => array(
|
602 |
+
'name' => 'Foursquare',
|
603 |
+
'href' => 'https://foursquare.com/${id}',
|
604 |
+
'icon' => 'foursquare',
|
605 |
+
'color' => 'F94877',
|
606 |
+
),
|
607 |
+
'github' => array(
|
608 |
+
'name' => 'GitHub',
|
609 |
+
'href' => 'https://github.com/${id}',
|
610 |
+
'icon' => 'github',
|
611 |
+
'color' => '2A2A2A',
|
612 |
+
),
|
613 |
+
'google_plus' => array(
|
614 |
+
'name' => 'Google+',
|
615 |
+
'href' => 'https://plus.google.com/${id}',
|
616 |
+
'icon' => 'google_plus',
|
617 |
+
'color' => 'DD4B39',
|
618 |
+
),
|
619 |
+
'linkedin' => array(
|
620 |
+
'name' => 'LinkedIn',
|
621 |
+
'href' => 'https://www.linkedin.com/in/${id}',
|
622 |
+
'icon' => 'linkedin',
|
623 |
+
'color' => '007BB5',
|
624 |
+
),
|
625 |
+
'linkedin_company' => array(
|
626 |
+
'name' => 'LinkedIn Company',
|
627 |
+
'href' => 'https://www.linkedin.com/company/${id}',
|
628 |
+
'icon' => 'linkedin',
|
629 |
+
'color' => '007BB5',
|
630 |
+
),
|
631 |
+
'snapchat' => array(
|
632 |
+
'name' => 'Snapchat',
|
633 |
+
'href' => 'https://www.snapchat.com/add/${id}',
|
634 |
+
'icon' => 'snapchat',
|
635 |
+
'color' => '',
|
636 |
+
),
|
637 |
+
'tumblr' => array(
|
638 |
+
'name' => 'Tumblr',
|
639 |
+
'href' => 'http://${id}.tumblr.com',
|
640 |
+
'icon' => 'tumblr',
|
641 |
+
'color' => '35465C',
|
642 |
+
),
|
643 |
+
'vimeo' => array(
|
644 |
+
'name' => 'Vimeo',
|
645 |
+
'href' => 'https://vimeo.com/${id}',
|
646 |
+
'icon' => 'vimeo',
|
647 |
+
'color' => '1AB7EA',
|
648 |
+
),
|
649 |
+
'youtube' => array(
|
650 |
+
'name' => 'YouTube',
|
651 |
+
'href' => 'https://www.youtube.com/user/${id}',
|
652 |
+
'icon' => 'youtube',
|
653 |
+
'color' => 'CD201F',
|
654 |
+
),
|
655 |
+
'youtube_channel' => array(
|
656 |
+
'name' => 'YouTube Channel',
|
657 |
+
'href' => 'https://www.youtube.com/channel/${id}',
|
658 |
+
'icon' => 'youtube',
|
659 |
+
'color' => 'CD201F',
|
660 |
+
),
|
661 |
+
'feed' => array(
|
662 |
+
'name' => 'RSS Feed',
|
663 |
+
'href' => 'http://www.example.com/feed/',
|
664 |
+
'icon' => 'feed',
|
665 |
+
'color' => 'e3702d',
|
666 |
+
),
|
667 |
+
|
668 |
);
|
icons/app_net.svg
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M16 7.158L4.156 25h2.422l2.695-4h13.453l2.695 4h2.426L16 7.158zM10.82 19L16 11.2l5.178 7.8H10.82z"/></svg>
|
|
icons/baidu.svg
DELETED
@@ -1 +0,0 @@
|
|
1 |
-
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M8.68 16.617c2.485-.534 2.145-3.51 2.073-4.16-.123-1.002-1.3-2.752-2.9-2.612-2.013.18-2.307 3.087-2.307 3.087-.273 1.346.65 4.22 3.133 3.685m4.613-4.986c1.373 0 2.482-1.58 2.482-3.532s-1.11-3.533-2.482-3.533-2.485 1.58-2.485 3.533 1.112 3.536 2.485 3.536m5.918.233c1.838.24 3.016-1.72 3.25-3.205.24-1.482-.945-3.207-2.243-3.503-1.305-.3-2.93 1.786-3.08 3.147-.177 1.666.237 3.326 2.073 3.56m7.276 2.496c0-.71-.59-2.85-2.78-2.85-2.193 0-2.483 2.02-2.483 3.447 0 1.362.113 3.263 2.84 3.204 2.72-.06 2.422-3.084 2.422-3.8m-2.78 6.237s-2.84-2.196-4.497-4.57c-2.25-3.504-5.445-2.077-6.513-.3-1.062 1.784-2.717 2.91-2.954 3.21-.24.293-3.43 2.018-2.722 5.166.71 3.146 3.2 3.087 3.2 3.087s1.833.18 3.96-.298c2.132-.475 3.966.116 3.966.116s4.97 1.668 6.33-1.54c1.36-3.206-.768-4.87-.768-4.87"/></svg>
|
|
icons/houzz.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path fill="#FFF" d="M16 4L9.072 7.999v8.002L16 12V4"/><path fill="#FFF" d="M9.072 16v8L16 19.999 9.072 16M16 19.999V28l6.928-4v-8L16 19.999M16 12.001L22.928 16V7.999L16 12.001"/><path opacity=".5" fill="#FFF" d="M9.072 16L16 19.999v-7.998L9.072 16"/></svg>
|
icons/stocktwits.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g fill="#FFF"><path d="M11.328 14.309l-1.793-.736c-1.303-.536-1.955-1.244-1.955-2.123 0-.637.249-1.166.746-1.587.498-.427 1.123-.642 1.878-.642.614 0 1.115.125 1.504.373.373.218.766.684 1.178 1.399l2.204-1.306c-1.166-2.024-2.788-3.037-4.863-3.037-1.539 0-2.828.459-3.866 1.376-1.039.909-1.559 2.039-1.559 3.391 0 2.005 1.232 3.528 3.698 4.569l1.738.722c.451.194.84.399 1.167.612.326.214.593.443.799.687.206.245.358.513.455.805.097.291.146.612.146.961 0 .871-.28 1.59-.84 2.156-.56.568-1.263.851-2.111.851-1.073 0-1.889-.389-2.449-1.166-.311-.405-.529-1.135-.653-2.193L4 20.028c.249 1.679.875 2.986 1.878 3.92 1.018.936 2.309 1.403 3.872 1.403 1.648 0 3.028-.544 4.139-1.634 1.102-1.082 1.653-2.451 1.653-4.109 0-1.237-.338-2.281-1.012-3.134-.676-.852-1.743-1.573-3.202-2.165zM28 7.023H17.037v2.571h4.14v15.425h2.695V9.594H28z"/></g></svg>
|
icons/threema.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><g fill="#FFF"><path d="M11.4 25.941a1.734 1.734 0 1 1-3.467 0 1.734 1.734 0 0 1 3.467 0M24.067 25.941a1.734 1.734 0 1 1-3.467 0 1.734 1.734 0 0 1 3.467 0M17.733 25.941a1.734 1.734 0 1 1-3.467 0 1.734 1.734 0 0 1 3.467 0"/><g><path d="M16.082 8.716h-.262c-.886 0-1.507.682-1.507 1.568v2.015h3.372v-2.015c.001-.886-.718-1.568-1.603-1.568z"/><path d="M16 4.325c-6.075 0-11 3.752-11 8.381 0 1.924.851 3.697 2.283 5.111.49.484.607 1.231.283 1.839l-1.479 2.776 4.39-1.384a6.183 6.183 0 0 1 1.863-.284c.383 0 .766.034 1.145.102.807.144 1.649.22 2.514.22 6.075 0 11-3.752 11-8.381S22.075 4.325 16 4.325zm3.793 12.432c0 .368-.409.6-.777.6H12.85c-.368 0-.643-.231-.643-.6v-3.733c0-.368.275-.725.643-.725h.2v-2.015c0-1.585 1.187-2.832 2.771-2.832h.262c1.583 0 2.868 1.247 2.868 2.832v2.015h.066c.368 0 .777.357.777.725v3.733z"/></g></g></svg>
|