Extra_Information_Trait.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace cybot\cookiebot\lib\traits; |
| 4 | |
| 5 | trait Extra_Information_Trait { |
| 6 | |
| 7 | /** |
| 8 | * Adds extra information under the label |
| 9 | * Each string in the array will be rendered in a <p> element, and should contain a localized string of information. |
| 10 | * |
| 11 | * @return string[] |
| 12 | */ |
| 13 | public function get_extra_information() { |
| 14 | return array(); |
| 15 | } |
| 16 | } |
| 17 |