Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
36 | public function Value() |
||
37 | { |
||
38 | $target = ''; |
||
39 | if ($this->targetBlank) { |
||
40 | $target = ' target="_blank" rel="noreferrer noopener"'; |
||
41 | } |
||
42 | |||
43 | return DBField::create_field( |
||
44 | 'HTMLText', |
||
45 | '<a href="' . $this->link . '" class="btn action btn-outline-primary" ' . $target . '> |
||
46 | <span class="btn__title">' . $this->label . '</span> |
||
47 | </a>' |
||
51 |