Ability_Audit_Logger.php
1 month ago
Cookiebot_Abilities_Registrar.php
1 month ago
Cookiebot_Ability_Interface.php
1 month ago
Get_Compliance_Summary_Ability.php
1 month ago
Get_Status_Ability.php
1 month ago
Install_Ppg_Ability.php
1 month ago
Set_Cbid_Ability.php
1 month ago
Toggle_Gcm_Ability.php
1 month ago
Verify_Setup_Ability.php
1 month ago
Cookiebot_Ability_Interface.php
30 lines
| 1 | <?php |
| 2 | |
| 3 | namespace cybot\cookiebot\abilities; |
| 4 | |
| 5 | /** |
| 6 | * Interface Cookiebot_Ability_Interface |
| 7 | * |
| 8 | * @package cybot\cookiebot\abilities |
| 9 | */ |
| 10 | interface Cookiebot_Ability_Interface { |
| 11 | |
| 12 | /** |
| 13 | * Returns the namespaced ability name, e.g. 'cookiebot/get-status'. |
| 14 | * |
| 15 | * @return string |
| 16 | * |
| 17 | * @since 4.8.0 |
| 18 | */ |
| 19 | public function get_name(); |
| 20 | |
| 21 | /** |
| 22 | * Returns the full args array for wp_register_ability(). |
| 23 | * |
| 24 | * @return array |
| 25 | * |
| 26 | * @since 4.8.0 |
| 27 | */ |
| 28 | public function get_args(); |
| 29 | } |
| 30 |