PluginProbe
Social Share Buttons / 1.19
Social Share Buttons v1.19
trunk 0.9 1.0 1.1 1.1.1 1.1.2 1.10 1.11 1.12 1.15 1.16 1.17 1.18 1.19 1.2 1.20 1.3 1.30 1.4 1.5 1.6 1.7 1.8 1.9
← All changes | classes/network/buffer.php +4 -0 0.91.19 View file →
@@ -8,8 +8,9 @@
8 8 protected $network = 'buffer';
9 9 protected $icon_type = 'nucleo';
10 10 protected $icon = 'nucleo-logo-buffer';
11 11 protected $priority = 'readmore';
12 + protected $color = '#242424';
12 13
13 14 public function __construct()
14 15 {
15 16 $this->label = __('Share', 'mbsocial');
@@ -18,6 +19,9 @@
18 19
19 20 $this->countable = true;
20 21 $this->count_api = 'https://api.bufferapp.com/1/links/shares.json?url={url}';
21 22 $this->return_var = 'shares';
23 +
24 + parent::__construct();
25 +
22 26 }
23 27 }