script-loader-tag-interface.php
24 lines
| 1 | <?php |
| 2 | |
| 3 | namespace cookiebot_addons\lib\script_loader_tag; |
| 4 | |
| 5 | Interface Script_Loader_Tag_Interface { |
| 6 | |
| 7 | /** |
| 8 | * @param $tag |
| 9 | * @param $type |
| 10 | * |
| 11 | * @return mixed |
| 12 | */ |
| 13 | public function add_tag($tag, $type ); |
| 14 | |
| 15 | /** |
| 16 | * @param $tag |
| 17 | * @param $handle |
| 18 | * @param $src |
| 19 | * |
| 20 | * @return mixed |
| 21 | */ |
| 22 | public function cookiebot_add_consent_attribute_to_tag( $tag, $handle, $src ); |
| 23 | } |
| 24 |