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