code
stringlengths
17
247k
docstring
stringlengths
30
30.3k
func_name
stringlengths
1
89
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
153
url
stringlengths
51
209
license
stringclasses
4 values
public function getNotificationUrl() { if (array_key_exists("notificationUrl", $this->_propDict)) { return $this->_propDict["notificationUrl"]; } else { return null; } }
Gets the notificationUrl Required. The URL of the endpoint that will receive the change notifications. This URL must make use of the HTTPS protocol. Any query string parameter included in the notificationUrl property will be included in the HTTP POST request when Microsoft Graph sends the change notifications. @return string|null The notificationUrl
getNotificationUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Subscription.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php
MIT
public function setNotificationUrl($val) { $this->_propDict["notificationUrl"] = $val; return $this; }
Sets the notificationUrl Required. The URL of the endpoint that will receive the change notifications. This URL must make use of the HTTPS protocol. Any query string parameter included in the notificationUrl property will be included in the HTTP POST request when Microsoft Graph sends the change notifications. @param string $val The notificationUrl @return Subscription
setNotificationUrl
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Subscription.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php
MIT
public function getNotificationUrlAppId() { if (array_key_exists("notificationUrlAppId", $this->_propDict)) { return $this->_propDict["notificationUrlAppId"]; } else { return null; } }
Gets the notificationUrlAppId Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received. @return string|null The notificationUrlAppId
getNotificationUrlAppId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Subscription.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php
MIT
public function setNotificationUrlAppId($val) { $this->_propDict["notificationUrlAppId"] = $val; return $this; }
Sets the notificationUrlAppId Optional. The app ID that the subscription service can use to generate the validation token. This allows the client to validate the authenticity of the notification received. @param string $val The notificationUrlAppId @return Subscription
setNotificationUrlAppId
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/Subscription.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/Subscription.php
MIT
public function getChat() { if (array_key_exists("chat", $this->_propDict)) { if (is_a($this->_propDict["chat"], "\Beta\Microsoft\Graph\Model\Chat") || is_null($this->_propDict["chat"])) { return $this->_propDict["chat"]; } else { $this->_propDict["chat"] = new Chat($this->_propDict["chat"]); return $this->_propDict["chat"]; } } return null; }
Gets the chat The chat between the user and Teams app. @return Chat|null The chat
getChat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserScopeTeamsAppInstallation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserScopeTeamsAppInstallation.php
MIT
public function setChat($val) { $this->_propDict["chat"] = $val; return $this; }
Sets the chat The chat between the user and Teams app. @param Chat $val The chat @return UserScopeTeamsAppInstallation
setChat
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserScopeTeamsAppInstallation.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/UserScopeTeamsAppInstallation.php
MIT
public function getConditions() { if (array_key_exists("conditions", $this->_propDict)) { if (is_a($this->_propDict["conditions"], "\Beta\Microsoft\Graph\Model\ConditionalAccessConditionSet") || is_null($this->_propDict["conditions"])) { return $this->_propDict["conditions"]; } else { $this->_propDict["conditions"] = new ConditionalAccessConditionSet($this->_propDict["conditions"]); return $this->_propDict["conditions"]; } } return null; }
Gets the conditions Represents the type of conditions that govern when the policy applies. @return ConditionalAccessConditionSet|null The conditions
getConditions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
MIT
public function setConditions($val) { $this->_propDict["conditions"] = $val; return $this; }
Sets the conditions Represents the type of conditions that govern when the policy applies. @param ConditionalAccessConditionSet $val The value to assign to the conditions @return ConditionalAccessPolicyDetail The ConditionalAccessPolicyDetail
setConditions
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
MIT
public function getGrantControls() { if (array_key_exists("grantControls", $this->_propDict)) { if (is_a($this->_propDict["grantControls"], "\Beta\Microsoft\Graph\Model\ConditionalAccessGrantControls") || is_null($this->_propDict["grantControls"])) { return $this->_propDict["grantControls"]; } else { $this->_propDict["grantControls"] = new ConditionalAccessGrantControls($this->_propDict["grantControls"]); return $this->_propDict["grantControls"]; } } return null; }
Gets the grantControls Represents grant controls that must be fulfilled for the policy. @return ConditionalAccessGrantControls|null The grantControls
getGrantControls
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
MIT
public function setGrantControls($val) { $this->_propDict["grantControls"] = $val; return $this; }
Sets the grantControls Represents grant controls that must be fulfilled for the policy. @param ConditionalAccessGrantControls $val The value to assign to the grantControls @return ConditionalAccessPolicyDetail The ConditionalAccessPolicyDetail
setGrantControls
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
MIT
public function getSessionControls() { if (array_key_exists("sessionControls", $this->_propDict)) { if (is_a($this->_propDict["sessionControls"], "\Beta\Microsoft\Graph\Model\ConditionalAccessSessionControls") || is_null($this->_propDict["sessionControls"])) { return $this->_propDict["sessionControls"]; } else { $this->_propDict["sessionControls"] = new ConditionalAccessSessionControls($this->_propDict["sessionControls"]); return $this->_propDict["sessionControls"]; } } return null; }
Gets the sessionControls Represents a complex type of session controls that is enforced after sign-in. @return ConditionalAccessSessionControls|null The sessionControls
getSessionControls
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
MIT
public function setSessionControls($val) { $this->_propDict["sessionControls"] = $val; return $this; }
Sets the sessionControls Represents a complex type of session controls that is enforced after sign-in. @param ConditionalAccessSessionControls $val The value to assign to the sessionControls @return ConditionalAccessPolicyDetail The ConditionalAccessPolicyDetail
setSessionControls
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/ConditionalAccessPolicyDetail.php
MIT
public function getTranslationBehavior() { if (array_key_exists("translationBehavior", $this->_propDict)) { if (is_a($this->_propDict["translationBehavior"], "\Beta\Microsoft\Graph\Model\TranslationBehavior") || is_null($this->_propDict["translationBehavior"])) { return $this->_propDict["translationBehavior"]; } else { $this->_propDict["translationBehavior"] = new TranslationBehavior($this->_propDict["translationBehavior"]); return $this->_propDict["translationBehavior"]; } } return null; }
Gets the translationBehavior The translation override behavior for the language, if any.Returned by default. Not nullable. @return TranslationBehavior|null The translationBehavior
getTranslationBehavior
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php
MIT
public function setTranslationBehavior($val) { $this->_propDict["translationBehavior"] = $val; return $this; }
Sets the translationBehavior The translation override behavior for the language, if any.Returned by default. Not nullable. @param TranslationBehavior $val The value to assign to the translationBehavior @return TranslationLanguageOverride The TranslationLanguageOverride
setTranslationBehavior
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/TranslationLanguageOverride.php
MIT
protected function write(array $record) { self::$json['rows'][] = $record['formatted']; $this->send(); }
Creates & sends header for a record @see sendHeader() @see send() @param array $record
write
php
xiebruce/PicUploader
vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
MIT
protected function sendHeader($header, $content) { if (!headers_sent() && self::$sendHeaders) { header(sprintf('%s: %s', $header, $content)); } }
Send header string to the client @param string $header @param string $content
sendHeader
php
xiebruce/PicUploader
vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
MIT
protected function headersAccepted() { if (empty($_SERVER['HTTP_USER_AGENT'])) { return false; } return preg_match(self::USER_AGENT_REGEX, $_SERVER['HTTP_USER_AGENT']); }
Verifies if the headers are accepted by the current user agent @return bool
headersAccepted
php
xiebruce/PicUploader
vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
MIT
public function __get($property) { if ('sendHeaders' !== $property) { throw new \InvalidArgumentException('Undefined property '.$property); } return static::$sendHeaders; }
BC getter for the sendHeaders property that has been made static
__get
php
xiebruce/PicUploader
vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
MIT
public function __set($property, $value) { if ('sendHeaders' !== $property) { throw new \InvalidArgumentException('Undefined property '.$property); } static::$sendHeaders = $value; }
BC setter for the sendHeaders property that has been made static
__set
php
xiebruce/PicUploader
vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/monolog/monolog/src/Monolog/Handler/ChromePHPHandler.php
MIT
public function getBottomMargins() { if (array_key_exists("bottomMargins", $this->_propDict)) { return $this->_propDict["bottomMargins"]; } else { return null; } }
Gets the bottomMargins A list of supported bottom margins(in microns) for the printer. @return int|null The bottomMargins
getBottomMargins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setBottomMargins($val) { $this->_propDict["bottomMargins"] = $val; return $this; }
Sets the bottomMargins A list of supported bottom margins(in microns) for the printer. @param int $val The value of the bottomMargins @return PrinterCapabilities
setBottomMargins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getCollation() { if (array_key_exists("collation", $this->_propDict)) { return $this->_propDict["collation"]; } else { return null; } }
Gets the collation True if the printer supports collating when printing muliple copies of a multi-page document; false otherwise. @return bool|null The collation
getCollation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setCollation($val) { $this->_propDict["collation"] = $val; return $this; }
Sets the collation True if the printer supports collating when printing muliple copies of a multi-page document; false otherwise. @param bool $val The value of the collation @return PrinterCapabilities
setCollation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getColorModes() { if (array_key_exists("colorModes", $this->_propDict)) { if (is_a($this->_propDict["colorModes"], "\Microsoft\Graph\Model\PrintColorMode") || is_null($this->_propDict["colorModes"])) { return $this->_propDict["colorModes"]; } else { $this->_propDict["colorModes"] = new PrintColorMode($this->_propDict["colorModes"]); return $this->_propDict["colorModes"]; } } return null; }
Gets the colorModes The color modes supported by the printer. Valid values are described in the following table. @return PrintColorMode|null The colorModes
getColorModes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setColorModes($val) { $this->_propDict["colorModes"] = $val; return $this; }
Sets the colorModes The color modes supported by the printer. Valid values are described in the following table. @param PrintColorMode $val The value to assign to the colorModes @return PrinterCapabilities The PrinterCapabilities
setColorModes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getContentTypes() { if (array_key_exists("contentTypes", $this->_propDict)) { return $this->_propDict["contentTypes"]; } else { return null; } }
Gets the contentTypes A list of supported content (MIME) types that the printer supports. It is not guaranteed that the Universal Print service supports printing all of these MIME types. @return string|null The contentTypes
getContentTypes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getCopiesPerJob() { if (array_key_exists("copiesPerJob", $this->_propDict)) { if (is_a($this->_propDict["copiesPerJob"], "\Microsoft\Graph\Model\IntegerRange") || is_null($this->_propDict["copiesPerJob"])) { return $this->_propDict["copiesPerJob"]; } else { $this->_propDict["copiesPerJob"] = new IntegerRange($this->_propDict["copiesPerJob"]); return $this->_propDict["copiesPerJob"]; } } return null; }
Gets the copiesPerJob The range of copies per job supported by the printer. @return IntegerRange|null The copiesPerJob
getCopiesPerJob
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setCopiesPerJob($val) { $this->_propDict["copiesPerJob"] = $val; return $this; }
Sets the copiesPerJob The range of copies per job supported by the printer. @param IntegerRange $val The value to assign to the copiesPerJob @return PrinterCapabilities The PrinterCapabilities
setCopiesPerJob
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getDpis() { if (array_key_exists("dpis", $this->_propDict)) { return $this->_propDict["dpis"]; } else { return null; } }
Gets the dpis The list of print resolutions in DPI that are supported by the printer. @return int|null The dpis
getDpis
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setDpis($val) { $this->_propDict["dpis"] = $val; return $this; }
Sets the dpis The list of print resolutions in DPI that are supported by the printer. @param int $val The value of the dpis @return PrinterCapabilities
setDpis
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getDuplexModes() { if (array_key_exists("duplexModes", $this->_propDict)) { if (is_a($this->_propDict["duplexModes"], "\Microsoft\Graph\Model\PrintDuplexMode") || is_null($this->_propDict["duplexModes"])) { return $this->_propDict["duplexModes"]; } else { $this->_propDict["duplexModes"] = new PrintDuplexMode($this->_propDict["duplexModes"]); return $this->_propDict["duplexModes"]; } } return null; }
Gets the duplexModes The list of duplex modes that are supported by the printer. Valid values are described in the following table. @return PrintDuplexMode|null The duplexModes
getDuplexModes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setDuplexModes($val) { $this->_propDict["duplexModes"] = $val; return $this; }
Sets the duplexModes The list of duplex modes that are supported by the printer. Valid values are described in the following table. @param PrintDuplexMode $val The value to assign to the duplexModes @return PrinterCapabilities The PrinterCapabilities
setDuplexModes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getFeedOrientations() { if (array_key_exists("feedOrientations", $this->_propDict)) { if (is_a($this->_propDict["feedOrientations"], "\Microsoft\Graph\Model\PrinterFeedOrientation") || is_null($this->_propDict["feedOrientations"])) { return $this->_propDict["feedOrientations"]; } else { $this->_propDict["feedOrientations"] = new PrinterFeedOrientation($this->_propDict["feedOrientations"]); return $this->_propDict["feedOrientations"]; } } return null; }
Gets the feedOrientations The list of feed orientations that are supported by the printer. @return PrinterFeedOrientation|null The feedOrientations
getFeedOrientations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setFeedOrientations($val) { $this->_propDict["feedOrientations"] = $val; return $this; }
Sets the feedOrientations The list of feed orientations that are supported by the printer. @param PrinterFeedOrientation $val The value to assign to the feedOrientations @return PrinterCapabilities The PrinterCapabilities
setFeedOrientations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getInputBins() { if (array_key_exists("inputBins", $this->_propDict)) { return $this->_propDict["inputBins"]; } else { return null; } }
Gets the inputBins Supported input bins for the printer. @return string|null The inputBins
getInputBins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setInputBins($val) { $this->_propDict["inputBins"] = $val; return $this; }
Sets the inputBins Supported input bins for the printer. @param string $val The value of the inputBins @return PrinterCapabilities
setInputBins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getIsColorPrintingSupported() { if (array_key_exists("isColorPrintingSupported", $this->_propDict)) { return $this->_propDict["isColorPrintingSupported"]; } else { return null; } }
Gets the isColorPrintingSupported True if color printing is supported by the printer; false otherwise. Read-only. @return bool|null The isColorPrintingSupported
getIsColorPrintingSupported
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setIsColorPrintingSupported($val) { $this->_propDict["isColorPrintingSupported"] = $val; return $this; }
Sets the isColorPrintingSupported True if color printing is supported by the printer; false otherwise. Read-only. @param bool $val The value of the isColorPrintingSupported @return PrinterCapabilities
setIsColorPrintingSupported
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getIsPageRangeSupported() { if (array_key_exists("isPageRangeSupported", $this->_propDict)) { return $this->_propDict["isPageRangeSupported"]; } else { return null; } }
Gets the isPageRangeSupported True if the printer supports printing by page ranges; false otherwise. @return bool|null The isPageRangeSupported
getIsPageRangeSupported
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setIsPageRangeSupported($val) { $this->_propDict["isPageRangeSupported"] = $val; return $this; }
Sets the isPageRangeSupported True if the printer supports printing by page ranges; false otherwise. @param bool $val The value of the isPageRangeSupported @return PrinterCapabilities
setIsPageRangeSupported
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getLeftMargins() { if (array_key_exists("leftMargins", $this->_propDict)) { return $this->_propDict["leftMargins"]; } else { return null; } }
Gets the leftMargins A list of supported left margins(in microns) for the printer. @return int|null The leftMargins
getLeftMargins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setLeftMargins($val) { $this->_propDict["leftMargins"] = $val; return $this; }
Sets the leftMargins A list of supported left margins(in microns) for the printer. @param int $val The value of the leftMargins @return PrinterCapabilities
setLeftMargins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getMediaColors() { if (array_key_exists("mediaColors", $this->_propDict)) { return $this->_propDict["mediaColors"]; } else { return null; } }
Gets the mediaColors The media (i.e., paper) colors supported by the printer. @return string|null The mediaColors
getMediaColors
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setMediaColors($val) { $this->_propDict["mediaColors"] = $val; return $this; }
Sets the mediaColors The media (i.e., paper) colors supported by the printer. @param string $val The value of the mediaColors @return PrinterCapabilities
setMediaColors
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getMediaSizes() { if (array_key_exists("mediaSizes", $this->_propDict)) { return $this->_propDict["mediaSizes"]; } else { return null; } }
Gets the mediaSizes The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes. Valid values are in the following table. @return string|null The mediaSizes
getMediaSizes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setMediaSizes($val) { $this->_propDict["mediaSizes"] = $val; return $this; }
Sets the mediaSizes The media sizes supported by the printer. Supports standard size names for ISO and ANSI media sizes. Valid values are in the following table. @param string $val The value of the mediaSizes @return PrinterCapabilities
setMediaSizes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getMediaTypes() { if (array_key_exists("mediaTypes", $this->_propDict)) { return $this->_propDict["mediaTypes"]; } else { return null; } }
Gets the mediaTypes The media types supported by the printer. @return string|null The mediaTypes
getMediaTypes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setMediaTypes($val) { $this->_propDict["mediaTypes"] = $val; return $this; }
Sets the mediaTypes The media types supported by the printer. @param string $val The value of the mediaTypes @return PrinterCapabilities
setMediaTypes
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getMultipageLayouts() { if (array_key_exists("multipageLayouts", $this->_propDict)) { if (is_a($this->_propDict["multipageLayouts"], "\Microsoft\Graph\Model\PrintMultipageLayout") || is_null($this->_propDict["multipageLayouts"])) { return $this->_propDict["multipageLayouts"]; } else { $this->_propDict["multipageLayouts"] = new PrintMultipageLayout($this->_propDict["multipageLayouts"]); return $this->_propDict["multipageLayouts"]; } } return null; }
Gets the multipageLayouts The presentation directions supported by the printer. Supported values are described in the following table. @return PrintMultipageLayout|null The multipageLayouts
getMultipageLayouts
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setMultipageLayouts($val) { $this->_propDict["multipageLayouts"] = $val; return $this; }
Sets the multipageLayouts The presentation directions supported by the printer. Supported values are described in the following table. @param PrintMultipageLayout $val The value to assign to the multipageLayouts @return PrinterCapabilities The PrinterCapabilities
setMultipageLayouts
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getOrientations() { if (array_key_exists("orientations", $this->_propDict)) { if (is_a($this->_propDict["orientations"], "\Microsoft\Graph\Model\PrintOrientation") || is_null($this->_propDict["orientations"])) { return $this->_propDict["orientations"]; } else { $this->_propDict["orientations"] = new PrintOrientation($this->_propDict["orientations"]); return $this->_propDict["orientations"]; } } return null; }
Gets the orientations The print orientations supported by the printer. Valid values are described in the following table. @return PrintOrientation|null The orientations
getOrientations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setOrientations($val) { $this->_propDict["orientations"] = $val; return $this; }
Sets the orientations The print orientations supported by the printer. Valid values are described in the following table. @param PrintOrientation $val The value to assign to the orientations @return PrinterCapabilities The PrinterCapabilities
setOrientations
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getOutputBins() { if (array_key_exists("outputBins", $this->_propDict)) { return $this->_propDict["outputBins"]; } else { return null; } }
Gets the outputBins The printer's supported output bins (trays). @return string|null The outputBins
getOutputBins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setOutputBins($val) { $this->_propDict["outputBins"] = $val; return $this; }
Sets the outputBins The printer's supported output bins (trays). @param string $val The value of the outputBins @return PrinterCapabilities
setOutputBins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getQualities() { if (array_key_exists("qualities", $this->_propDict)) { if (is_a($this->_propDict["qualities"], "\Microsoft\Graph\Model\PrintQuality") || is_null($this->_propDict["qualities"])) { return $this->_propDict["qualities"]; } else { $this->_propDict["qualities"] = new PrintQuality($this->_propDict["qualities"]); return $this->_propDict["qualities"]; } } return null; }
Gets the qualities The print qualities supported by the printer. @return PrintQuality|null The qualities
getQualities
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setQualities($val) { $this->_propDict["qualities"] = $val; return $this; }
Sets the qualities The print qualities supported by the printer. @param PrintQuality $val The value to assign to the qualities @return PrinterCapabilities The PrinterCapabilities
setQualities
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getRightMargins() { if (array_key_exists("rightMargins", $this->_propDict)) { return $this->_propDict["rightMargins"]; } else { return null; } }
Gets the rightMargins A list of supported right margins(in microns) for the printer. @return int|null The rightMargins
getRightMargins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setRightMargins($val) { $this->_propDict["rightMargins"] = $val; return $this; }
Sets the rightMargins A list of supported right margins(in microns) for the printer. @param int $val The value of the rightMargins @return PrinterCapabilities
setRightMargins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getScalings() { if (array_key_exists("scalings", $this->_propDict)) { if (is_a($this->_propDict["scalings"], "\Microsoft\Graph\Model\PrintScaling") || is_null($this->_propDict["scalings"])) { return $this->_propDict["scalings"]; } else { $this->_propDict["scalings"] = new PrintScaling($this->_propDict["scalings"]); return $this->_propDict["scalings"]; } } return null; }
Gets the scalings Supported print scalings. @return PrintScaling|null The scalings
getScalings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setScalings($val) { $this->_propDict["scalings"] = $val; return $this; }
Sets the scalings Supported print scalings. @param PrintScaling $val The value to assign to the scalings @return PrinterCapabilities The PrinterCapabilities
setScalings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getSupportsFitPdfToPage() { if (array_key_exists("supportsFitPdfToPage", $this->_propDict)) { return $this->_propDict["supportsFitPdfToPage"]; } else { return null; } }
Gets the supportsFitPdfToPage True if the printer supports scaling PDF pages to match the print media size; false otherwise. @return bool|null The supportsFitPdfToPage
getSupportsFitPdfToPage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setSupportsFitPdfToPage($val) { $this->_propDict["supportsFitPdfToPage"] = $val; return $this; }
Sets the supportsFitPdfToPage True if the printer supports scaling PDF pages to match the print media size; false otherwise. @param bool $val The value of the supportsFitPdfToPage @return PrinterCapabilities
setSupportsFitPdfToPage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getTopMargins() { if (array_key_exists("topMargins", $this->_propDict)) { return $this->_propDict["topMargins"]; } else { return null; } }
Gets the topMargins A list of supported top margins(in microns) for the printer. @return int|null The topMargins
getTopMargins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function setTopMargins($val) { $this->_propDict["topMargins"] = $val; return $this; }
Sets the topMargins A list of supported top margins(in microns) for the printer. @param int $val The value of the topMargins @return PrinterCapabilities
setTopMargins
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Model/PrinterCapabilities.php
MIT
public function getWin32App() { if (array_key_exists("win32App", $this->_propDict)) { if (is_a($this->_propDict["win32App"], "\Beta\Microsoft\Graph\Model\WindowsKioskWin32App") || is_null($this->_propDict["win32App"])) { return $this->_propDict["win32App"]; } else { $this->_propDict["win32App"] = new WindowsKioskWin32App($this->_propDict["win32App"]); return $this->_propDict["win32App"]; } } return null; }
Gets the win32App This is the win32 app that will be available to launch use while in Kiosk Mode @return WindowsKioskWin32App|null The win32App
getWin32App
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsKioskSingleWin32App.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsKioskSingleWin32App.php
MIT
public function setWin32App($val) { $this->_propDict["win32App"] = $val; return $this; }
Sets the win32App This is the win32 app that will be available to launch use while in Kiosk Mode @param WindowsKioskWin32App $val The value to assign to the win32App @return WindowsKioskSingleWin32App The WindowsKioskSingleWin32App
setWin32App
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsKioskSingleWin32App.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/WindowsKioskSingleWin32App.php
MIT
public function getSite() { if (array_key_exists("site", $this->_propDict)) { if (is_a($this->_propDict["site"], "\Microsoft\Graph\Model\Site") || is_null($this->_propDict["site"])) { return $this->_propDict["site"]; } else { $this->_propDict["site"] = new \Microsoft\Graph\Model\Site($this->_propDict["site"]); return $this->_propDict["site"]; } } return null; }
Gets the site The SharePoint site associated with the siteSource. @return \Microsoft\Graph\Model\Site|null The site
getSite
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/SiteSource.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/SecurityNamespace/Model/SiteSource.php
MIT
public function getDataLocationCode() { if (array_key_exists("dataLocationCode", $this->_propDict)) { return $this->_propDict["dataLocationCode"]; } else { return null; } }
Gets the dataLocationCode The geographic region code for where this site collection resides. Read-only. @return string|null The dataLocationCode
getDataLocationCode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
MIT
public function setDataLocationCode($val) { $this->_propDict["dataLocationCode"] = $val; return $this; }
Sets the dataLocationCode The geographic region code for where this site collection resides. Read-only. @param string $val The value of the dataLocationCode @return SiteCollection
setDataLocationCode
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
MIT
public function getHostname() { if (array_key_exists("hostname", $this->_propDict)) { return $this->_propDict["hostname"]; } else { return null; } }
Gets the hostname The hostname for the site collection. Read-only. @return string|null The hostname
getHostname
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
MIT
public function setHostname($val) { $this->_propDict["hostname"] = $val; return $this; }
Sets the hostname The hostname for the site collection. Read-only. @param string $val The value of the hostname @return SiteCollection
setHostname
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
MIT
public function getRoot() { if (array_key_exists("root", $this->_propDict)) { if (is_a($this->_propDict["root"], "\Beta\Microsoft\Graph\Model\Root") || is_null($this->_propDict["root"])) { return $this->_propDict["root"]; } else { $this->_propDict["root"] = new Root($this->_propDict["root"]); return $this->_propDict["root"]; } } return null; }
Gets the root If present, indicates that this is a root site collection in SharePoint. Read-only. @return Root|null The root
getRoot
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
MIT
public function setRoot($val) { $this->_propDict["root"] = $val; return $this; }
Sets the root If present, indicates that this is a root site collection in SharePoint. Read-only. @param Root $val The value to assign to the root @return SiteCollection The SiteCollection
setRoot
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/SiteCollection.php
MIT
function pushContext() { $this->contextStack[] = [ $this->elementMap, $this->contextUri, $this->namespaceMap, $this->classMap ]; }
Create a new "context". This allows you to safely modify the elementMap, contextUri or namespaceMap. After you're done, you can restore the old data again with popContext. @return null
pushContext
php
xiebruce/PicUploader
vendor/sabre/xml/lib/ContextStackTrait.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/xml/lib/ContextStackTrait.php
MIT
function popContext() { list( $this->elementMap, $this->contextUri, $this->namespaceMap, $this->classMap ) = array_pop($this->contextStack); }
Restore the previous "context". @return null
popContext
php
xiebruce/PicUploader
vendor/sabre/xml/lib/ContextStackTrait.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/sabre/xml/lib/ContextStackTrait.php
MIT
public function getAssetTagTemplate() { if (array_key_exists("assetTagTemplate", $this->_propDict)) { return $this->_propDict["assetTagTemplate"]; } else { return null; } }
Gets the assetTagTemplate Asset tag information for the device, displayed on the login window and lock screen. @return string|null The assetTagTemplate
getAssetTagTemplate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setAssetTagTemplate($val) { $this->_propDict["assetTagTemplate"] = $val; return $this; }
Sets the assetTagTemplate Asset tag information for the device, displayed on the login window and lock screen. @param string $val The assetTagTemplate @return IosDeviceFeaturesConfiguration
setAssetTagTemplate
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getContentFilterSettings() { if (array_key_exists("contentFilterSettings", $this->_propDict)) { if (is_a($this->_propDict["contentFilterSettings"], "\Beta\Microsoft\Graph\Model\IosWebContentFilterBase") || is_null($this->_propDict["contentFilterSettings"])) { return $this->_propDict["contentFilterSettings"]; } else { $this->_propDict["contentFilterSettings"] = new IosWebContentFilterBase($this->_propDict["contentFilterSettings"]); return $this->_propDict["contentFilterSettings"]; } } return null; }
Gets the contentFilterSettings Gets or sets iOS Web Content Filter settings, supervised mode only @return IosWebContentFilterBase|null The contentFilterSettings
getContentFilterSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setContentFilterSettings($val) { $this->_propDict["contentFilterSettings"] = $val; return $this; }
Sets the contentFilterSettings Gets or sets iOS Web Content Filter settings, supervised mode only @param IosWebContentFilterBase $val The contentFilterSettings @return IosDeviceFeaturesConfiguration
setContentFilterSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getHomeScreenDockIcons() { if (array_key_exists("homeScreenDockIcons", $this->_propDict)) { return $this->_propDict["homeScreenDockIcons"]; } else { return null; } }
Gets the homeScreenDockIcons A list of app and folders to appear on the Home Screen Dock. This collection can contain a maximum of 500 elements. @return array|null The homeScreenDockIcons
getHomeScreenDockIcons
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setHomeScreenDockIcons($val) { $this->_propDict["homeScreenDockIcons"] = $val; return $this; }
Sets the homeScreenDockIcons A list of app and folders to appear on the Home Screen Dock. This collection can contain a maximum of 500 elements. @param IosHomeScreenItem[] $val The homeScreenDockIcons @return IosDeviceFeaturesConfiguration
setHomeScreenDockIcons
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getHomeScreenGridHeight() { if (array_key_exists("homeScreenGridHeight", $this->_propDict)) { return $this->_propDict["homeScreenGridHeight"]; } else { return null; } }
Gets the homeScreenGridHeight Gets or sets the number of rows to render when configuring iOS home screen layout settings. If this value is configured, homeScreenGridWidth must be configured as well. @return int|null The homeScreenGridHeight
getHomeScreenGridHeight
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setHomeScreenGridHeight($val) { $this->_propDict["homeScreenGridHeight"] = intval($val); return $this; }
Sets the homeScreenGridHeight Gets or sets the number of rows to render when configuring iOS home screen layout settings. If this value is configured, homeScreenGridWidth must be configured as well. @param int $val The homeScreenGridHeight @return IosDeviceFeaturesConfiguration
setHomeScreenGridHeight
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getHomeScreenGridWidth() { if (array_key_exists("homeScreenGridWidth", $this->_propDict)) { return $this->_propDict["homeScreenGridWidth"]; } else { return null; } }
Gets the homeScreenGridWidth Gets or sets the number of columns to render when configuring iOS home screen layout settings. If this value is configured, homeScreenGridHeight must be configured as well. @return int|null The homeScreenGridWidth
getHomeScreenGridWidth
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setHomeScreenGridWidth($val) { $this->_propDict["homeScreenGridWidth"] = intval($val); return $this; }
Sets the homeScreenGridWidth Gets or sets the number of columns to render when configuring iOS home screen layout settings. If this value is configured, homeScreenGridHeight must be configured as well. @param int $val The homeScreenGridWidth @return IosDeviceFeaturesConfiguration
setHomeScreenGridWidth
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getHomeScreenPages() { if (array_key_exists("homeScreenPages", $this->_propDict)) { return $this->_propDict["homeScreenPages"]; } else { return null; } }
Gets the homeScreenPages A list of pages on the Home Screen. This collection can contain a maximum of 500 elements. @return array|null The homeScreenPages
getHomeScreenPages
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setHomeScreenPages($val) { $this->_propDict["homeScreenPages"] = $val; return $this; }
Sets the homeScreenPages A list of pages on the Home Screen. This collection can contain a maximum of 500 elements. @param IosHomeScreenPage[] $val The homeScreenPages @return IosDeviceFeaturesConfiguration
setHomeScreenPages
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getIosSingleSignOnExtension() { if (array_key_exists("iosSingleSignOnExtension", $this->_propDict)) { if (is_a($this->_propDict["iosSingleSignOnExtension"], "\Beta\Microsoft\Graph\Model\IosSingleSignOnExtension") || is_null($this->_propDict["iosSingleSignOnExtension"])) { return $this->_propDict["iosSingleSignOnExtension"]; } else { $this->_propDict["iosSingleSignOnExtension"] = new IosSingleSignOnExtension($this->_propDict["iosSingleSignOnExtension"]); return $this->_propDict["iosSingleSignOnExtension"]; } } return null; }
Gets the iosSingleSignOnExtension Gets or sets a single sign-on extension profile. @return IosSingleSignOnExtension|null The iosSingleSignOnExtension
getIosSingleSignOnExtension
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setIosSingleSignOnExtension($val) { $this->_propDict["iosSingleSignOnExtension"] = $val; return $this; }
Sets the iosSingleSignOnExtension Gets or sets a single sign-on extension profile. @param IosSingleSignOnExtension $val The iosSingleSignOnExtension @return IosDeviceFeaturesConfiguration
setIosSingleSignOnExtension
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getLockScreenFootnote() { if (array_key_exists("lockScreenFootnote", $this->_propDict)) { return $this->_propDict["lockScreenFootnote"]; } else { return null; } }
Gets the lockScreenFootnote A footnote displayed on the login window and lock screen. Available in iOS 9.3.1 and later. @return string|null The lockScreenFootnote
getLockScreenFootnote
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setLockScreenFootnote($val) { $this->_propDict["lockScreenFootnote"] = $val; return $this; }
Sets the lockScreenFootnote A footnote displayed on the login window and lock screen. Available in iOS 9.3.1 and later. @param string $val The lockScreenFootnote @return IosDeviceFeaturesConfiguration
setLockScreenFootnote
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getNotificationSettings() { if (array_key_exists("notificationSettings", $this->_propDict)) { return $this->_propDict["notificationSettings"]; } else { return null; } }
Gets the notificationSettings Notification settings for each bundle id. Applicable to devices in supervised mode only (iOS 9.3 and later). This collection can contain a maximum of 500 elements. @return array|null The notificationSettings
getNotificationSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setNotificationSettings($val) { $this->_propDict["notificationSettings"] = $val; return $this; }
Sets the notificationSettings Notification settings for each bundle id. Applicable to devices in supervised mode only (iOS 9.3 and later). This collection can contain a maximum of 500 elements. @param IosNotificationSettings[] $val The notificationSettings @return IosDeviceFeaturesConfiguration
setNotificationSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getSingleSignOnExtension() { if (array_key_exists("singleSignOnExtension", $this->_propDict)) { if (is_a($this->_propDict["singleSignOnExtension"], "\Beta\Microsoft\Graph\Model\SingleSignOnExtension") || is_null($this->_propDict["singleSignOnExtension"])) { return $this->_propDict["singleSignOnExtension"]; } else { $this->_propDict["singleSignOnExtension"] = new SingleSignOnExtension($this->_propDict["singleSignOnExtension"]); return $this->_propDict["singleSignOnExtension"]; } } return null; }
Gets the singleSignOnExtension Gets or sets a single sign-on extension profile. Deprecated: use IOSSingleSignOnExtension instead. @return SingleSignOnExtension|null The singleSignOnExtension
getSingleSignOnExtension
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setSingleSignOnExtension($val) { $this->_propDict["singleSignOnExtension"] = $val; return $this; }
Sets the singleSignOnExtension Gets or sets a single sign-on extension profile. Deprecated: use IOSSingleSignOnExtension instead. @param SingleSignOnExtension $val The singleSignOnExtension @return IosDeviceFeaturesConfiguration
setSingleSignOnExtension
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getSingleSignOnSettings() { if (array_key_exists("singleSignOnSettings", $this->_propDict)) { if (is_a($this->_propDict["singleSignOnSettings"], "\Beta\Microsoft\Graph\Model\IosSingleSignOnSettings") || is_null($this->_propDict["singleSignOnSettings"])) { return $this->_propDict["singleSignOnSettings"]; } else { $this->_propDict["singleSignOnSettings"] = new IosSingleSignOnSettings($this->_propDict["singleSignOnSettings"]); return $this->_propDict["singleSignOnSettings"]; } } return null; }
Gets the singleSignOnSettings The Kerberos login settings that enable apps on receiving devices to authenticate smoothly. @return IosSingleSignOnSettings|null The singleSignOnSettings
getSingleSignOnSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setSingleSignOnSettings($val) { $this->_propDict["singleSignOnSettings"] = $val; return $this; }
Sets the singleSignOnSettings The Kerberos login settings that enable apps on receiving devices to authenticate smoothly. @param IosSingleSignOnSettings $val The singleSignOnSettings @return IosDeviceFeaturesConfiguration
setSingleSignOnSettings
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getWallpaperDisplayLocation() { if (array_key_exists("wallpaperDisplayLocation", $this->_propDict)) { if (is_a($this->_propDict["wallpaperDisplayLocation"], "\Beta\Microsoft\Graph\Model\IosWallpaperDisplayLocation") || is_null($this->_propDict["wallpaperDisplayLocation"])) { return $this->_propDict["wallpaperDisplayLocation"]; } else { $this->_propDict["wallpaperDisplayLocation"] = new IosWallpaperDisplayLocation($this->_propDict["wallpaperDisplayLocation"]); return $this->_propDict["wallpaperDisplayLocation"]; } } return null; }
Gets the wallpaperDisplayLocation A wallpaper display location specifier. Possible values are: notConfigured, lockScreen, homeScreen, lockAndHomeScreens. @return IosWallpaperDisplayLocation|null The wallpaperDisplayLocation
getWallpaperDisplayLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function setWallpaperDisplayLocation($val) { $this->_propDict["wallpaperDisplayLocation"] = $val; return $this; }
Sets the wallpaperDisplayLocation A wallpaper display location specifier. Possible values are: notConfigured, lockScreen, homeScreen, lockAndHomeScreens. @param IosWallpaperDisplayLocation $val The wallpaperDisplayLocation @return IosDeviceFeaturesConfiguration
setWallpaperDisplayLocation
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT
public function getWallpaperImage() { if (array_key_exists("wallpaperImage", $this->_propDict)) { if (is_a($this->_propDict["wallpaperImage"], "\Beta\Microsoft\Graph\Model\MimeContent") || is_null($this->_propDict["wallpaperImage"])) { return $this->_propDict["wallpaperImage"]; } else { $this->_propDict["wallpaperImage"] = new MimeContent($this->_propDict["wallpaperImage"]); return $this->_propDict["wallpaperImage"]; } } return null; }
Gets the wallpaperImage A wallpaper image must be in either PNG or JPEG format. It requires a supervised device with iOS 8 or later version. @return MimeContent|null The wallpaperImage
getWallpaperImage
php
xiebruce/PicUploader
vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosDeviceFeaturesConfiguration.php
MIT