PluginProbe
Social Share Buttons / 1.18
Social Share Buttons v1.18
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 -3 1.21.18 View file →
@@ -8,14 +8,12 @@
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 + protected $color = '#242424';
13 13
14 14 public function __construct()
15 15 {
16 - parent::__construct();
17 -
18 16 $this->label = __('Share', 'mbsocial');
19 17 $this->share_url = 'https://buffer.com/add?url={url}&text={title}';
20 18 $this->popup_dimensions = array(600,600);
21 19
@@ -21,6 +19,9 @@
21 19
22 20 $this->countable = true;
23 21 $this->count_api = 'https://api.bufferapp.com/1/links/shares.json?url={url}';
24 22 $this->return_var = 'shares';
23 +
24 + parent::__construct();
25 +
25 26 }
26 27 }