Conditions | 2 |
Paths | 2 |
Total Lines | 14 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
26 | public function run() |
||
27 | { |
||
28 | $out = ''; |
||
29 | foreach ($this->socials as $item => $url) { |
||
30 | list($icon, $linkClass) = explode('|', $item); |
||
31 | $out .= Html::a("<i class=\"fa fa-{$icon}\"></i>", implode('', [$url, $this->shareLink]), [ |
||
32 | 'class' => 'external ' . $linkClass, |
||
33 | 'style' => 'opacity: 1;', |
||
34 | 'data-animate-hover' => 'pulse', |
||
35 | ]); |
||
36 | } |
||
37 | |||
38 | return $out; |
||
39 | } |
||
40 | } |
||
41 |