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 : /var/www/hopeinstoughton_www/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.
*
* WebApplication 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;
/**
* WebApplication 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 WebApplication extends Entity
{
/**
* Gets the homePageUrl
* Home page or landing page of the application.
*
* @return string|null The homePageUrl
*/
public function getHomePageUrl()
{
if (array_key_exists("homePageUrl", $this->_propDict)) {
return $this->_propDict["homePageUrl"];
} else {
return null;
}
}
/**
* Sets the homePageUrl
* Home page or landing page of the application.
*
* @param string $val The value of the homePageUrl
*
* @return WebApplication
*/
public function setHomePageUrl($val)
{
$this->_propDict["homePageUrl"] = $val;
return $this;
}
/**
* Gets the implicitGrantSettings
* Specifies whether this web application can request tokens using the OAuth 2.0 implicit flow.
*
* @return ImplicitGrantSettings|null The implicitGrantSettings
*/
public function getImplicitGrantSettings()
{
if (array_key_exists("implicitGrantSettings", $this->_propDict)) {
if (is_a($this->_propDict["implicitGrantSettings"], "\Microsoft\Graph\Model\ImplicitGrantSettings") || is_null($this->_propDict["implicitGrantSettings"])) {
return $this->_propDict["implicitGrantSettings"];
} else {
$this->_propDict["implicitGrantSettings"] = new ImplicitGrantSettings($this->_propDict["implicitGrantSettings"]);
return $this->_propDict["implicitGrantSettings"];
}
}
return null;
}
/**
* Sets the implicitGrantSettings
* Specifies whether this web application can request tokens using the OAuth 2.0 implicit flow.
*
* @param ImplicitGrantSettings $val The value to assign to the implicitGrantSettings
*
* @return WebApplication The WebApplication
*/
public function setImplicitGrantSettings($val)
{
$this->_propDict["implicitGrantSettings"] = $val;
return $this;
}
/**
* Gets the logoutUrl
* Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols.
*
* @return string|null The logoutUrl
*/
public function getLogoutUrl()
{
if (array_key_exists("logoutUrl", $this->_propDict)) {
return $this->_propDict["logoutUrl"];
} else {
return null;
}
}
/**
* Sets the logoutUrl
* Specifies the URL that will be used by Microsoft's authorization service to logout an user using front-channel, back-channel or SAML logout protocols.
*
* @param string $val The value of the logoutUrl
*
* @return WebApplication
*/
public function setLogoutUrl($val)
{
$this->_propDict["logoutUrl"] = $val;
return $this;
}
/**
* Gets the redirectUris
* Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent.
*
* @return string|null The redirectUris
*/
public function getRedirectUris()
{
if (array_key_exists("redirectUris", $this->_propDict)) {
return $this->_propDict["redirectUris"];
} else {
return null;
}
}
/**
* Sets the redirectUris
* Specifies the URLs where user tokens are sent for sign-in, or the redirect URIs where OAuth 2.0 authorization codes and access tokens are sent.
*
* @param string $val The value of the redirectUris
*
* @return WebApplication
*/
public function setRedirectUris($val)
{
$this->_propDict["redirectUris"] = $val;
return $this;
}
/**
* Gets the redirectUriSettings
*
* @return RedirectUriSettings|null The redirectUriSettings
*/
public function getRedirectUriSettings()
{
if (array_key_exists("redirectUriSettings", $this->_propDict)) {
if (is_a($this->_propDict["redirectUriSettings"], "\Microsoft\Graph\Model\RedirectUriSettings") || is_null($this->_propDict["redirectUriSettings"])) {
return $this->_propDict["redirectUriSettings"];
} else {
$this->_propDict["redirectUriSettings"] = new RedirectUriSettings($this->_propDict["redirectUriSettings"]);
return $this->_propDict["redirectUriSettings"];
}
}
return null;
}
/**
* Sets the redirectUriSettings
*
* @param RedirectUriSettings $val The value to assign to the redirectUriSettings
*
* @return WebApplication The WebApplication
*/
public function setRedirectUriSettings($val)
{
$this->_propDict["redirectUriSettings"] = $val;
return $this;
}
}