| 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 |
|