Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/thread-self/cwd/vendor/microsoft/microsoft-graph/src/Model/ |
Upload File : |
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* ParentalControlSettings File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* ParentalControlSettings class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class ParentalControlSettings extends Entity
{
/**
* Gets the countriesBlockedForMinors
* Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list.
*
* @return string|null The countriesBlockedForMinors
*/
public function getCountriesBlockedForMinors()
{
if (array_key_exists("countriesBlockedForMinors", $this->_propDict)) {
return $this->_propDict["countriesBlockedForMinors"];
} else {
return null;
}
}
/**
* Sets the countriesBlockedForMinors
* Specifies the two-letter ISO country codes. Access to the application will be blocked for minors from the countries specified in this list.
*
* @param string $val The value of the countriesBlockedForMinors
*
* @return ParentalControlSettings
*/
public function setCountriesBlockedForMinors($val)
{
$this->_propDict["countriesBlockedForMinors"] = $val;
return $this;
}
/**
* Gets the legalAgeGroupRule
* Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app.
*
* @return string|null The legalAgeGroupRule
*/
public function getLegalAgeGroupRule()
{
if (array_key_exists("legalAgeGroupRule", $this->_propDict)) {
return $this->_propDict["legalAgeGroupRule"];
} else {
return null;
}
}
/**
* Sets the legalAgeGroupRule
* Specifies the legal age group rule that applies to users of the app. Can be set to one of the following values: ValueDescriptionAllowDefault. Enforces the legal minimum. This means parental consent is required for minors in the European Union and Korea.RequireConsentForPrivacyServicesEnforces the user to specify date of birth to comply with COPPA rules. RequireConsentForMinorsRequires parental consent for ages below 18, regardless of country minor rules.RequireConsentForKidsRequires parental consent for ages below 14, regardless of country minor rules.BlockMinorsBlocks minors from using the app.
*
* @param string $val The value of the legalAgeGroupRule
*
* @return ParentalControlSettings
*/
public function setLegalAgeGroupRule($val)
{
$this->_propDict["legalAgeGroupRule"] = $val;
return $this;
}
}