PluginProbe
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.7.3
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.7.3
4.7.3 4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 All 93 releases
cookiebot / src / abilities / Cookiebot_Ability_Interface.php

Cookiebot_Ability_Interface.php in Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode 4.7.3, at src/abilities/Cookiebot_Ability_Interface.php

30 lines 473 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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