Tags
2 weeks ago
Datapoint.php
2 weeks ago
Disconnected_Modules.php
2 weeks ago
Executable_Datapoint.php
10 months ago
Module.php
2 weeks ago
Module_Registry.php
5 years ago
Module_Settings.php
5 years ago
Module_Sharing_Settings.php
2 weeks ago
Module_With_Activation.php
4 years ago
Module_With_Assets.php
4 years ago
Module_With_Assets_Trait.php
1 year ago
Module_With_Data_Available_State.php
3 years ago
Module_With_Data_Available_State_Trait.php
2 years ago
Module_With_Deactivation.php
4 years ago
Module_With_Debug_Fields.php
2 weeks ago
Module_With_Inline_Data.php
2 weeks ago
Module_With_Owner.php
3 months ago
Module_With_Owner_Trait.php
4 years ago
Module_With_Persistent_Registration.php
1 year ago
Module_With_Scopes.php
5 years ago
Module_With_Scopes_Trait.php
1 year ago
Module_With_Service_Entity.php
2 weeks ago
Module_With_Settings.php
5 years ago
Module_With_Settings_Trait.php
2 weeks ago
Module_With_Tag.php
2 months ago
Module_With_Tag_Trait.php
1 year ago
Modules.php
2 weeks ago
Permission_Aware_Datapoint.php
2 weeks ago
REST_Dashboard_Sharing_Controller.php
1 year ago
REST_Modules_Controller.php
2 weeks ago
Shareable_Datapoint.php
2 weeks ago
Module_With_Scopes.php
31 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Interface Google\Site_Kit\Core\Modules\Module_With_Scopes |
| 4 | * |
| 5 | * @package Google\Site_Kit |
| 6 | * @copyright 2021 Google LLC |
| 7 | * @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0 |
| 8 | * @link https://sitekit.withgoogle.com |
| 9 | */ |
| 10 | |
| 11 | namespace Google\Site_Kit\Core\Modules; |
| 12 | |
| 13 | /** |
| 14 | * Interface for a module that requires Google OAuth scopes. |
| 15 | * |
| 16 | * @since 1.0.0 |
| 17 | * @access private |
| 18 | * @ignore |
| 19 | */ |
| 20 | interface Module_With_Scopes { |
| 21 | |
| 22 | /** |
| 23 | * Gets required Google OAuth scopes for the module. |
| 24 | * |
| 25 | * @since 1.0.0 |
| 26 | * |
| 27 | * @return array List of Google OAuth scopes. |
| 28 | */ |
| 29 | public function get_scopes(); |
| 30 | } |
| 31 |