| 1 |
<?php |
| 2 |
|
| 3 |
namespace Codelight\GDPR\Admin; |
| 4 |
|
| 5 |
interface AdminTabInterface |
| 6 |
{ |
| 7 |
/** |
| 8 |
* @return string |
| 9 |
*/ |
| 10 |
public function getSlug(); |
| 11 |
|
| 12 |
/** |
| 13 |
* @return string |
| 14 |
*/ |
| 15 |
public function getTitle(); |
| 16 |
|
| 17 |
/** |
| 18 |
* Use this function to register settings and fields |
| 19 |
* |
| 20 |
* @return void |
| 21 |
*/ |
| 22 |
public function init(); |
| 23 |
|
| 24 |
/** |
| 25 |
* Wrapper around init() function. |
| 26 |
* You probably don't need to override this. |
| 27 |
* |
| 28 |
* @return void |
| 29 |
*/ |
| 30 |
public function setup(); |
| 31 |
|
| 32 |
/** |
| 33 |
* Wrapper around render() function. |
| 34 |
* Automatically calls settings_fields(), do_settings_sections() and submit_button(). |
| 35 |
* Override this if you don't want the functions to be called. |
| 36 |
* |
| 37 |
* @return string |
| 38 |
*/ |
| 39 |
public function renderContents(); |
| 40 |
} |