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 isDesktop()
{
return !$this->isMobile();
} | Check if the user agent represents a desktop device.
@return bool True if the user agent is from a desktop device, false otherwise. | isDesktop | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isIPhone()
{
return Utilities::inString($this->agent, Identifiers::IPHONE);
} | Check if the user agent represents an iPhone.
@return bool True if the user agent is from an iPhone, false otherwise. | isIPhone | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isMacintosh()
{
return Utilities::inString($this->agent, Identifiers::MAC);
} | Check if the user agent represents a Macintosh.
@return bool True if the user agent is from a Macintosh, false otherwise. | isMacintosh | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isIMac()
{
return Utilities::inString($this->agent, Identifiers::IMAC);
} | Check if the user agent represents an iMac.
@return bool True if the user agent is from an iMac, false otherwise. | isIMac | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isIpod()
{
return Utilities::inString($this->agent, Identifiers::IPOD);
} | Check if the user agent represents an iPod.
@return bool True if the user agent is from an iPod, false otherwise. | isIpod | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isIpad()
{
return Utilities::inString($this->agent, Identifiers::IPAD);
} | Check if the user agent represents an iPad.
@return bool True if the user agent is from an iPad, false otherwise. | isIpad | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isLinux()
{
return Utilities::inString($this->agent, Identifiers::LINUX);
} | Check if the user agent represents a Linux system.
@return bool True if the user agent is from a Linux system, false otherwise. | isLinux | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isAndroid()
{
return Utilities::inString($this->agent, Identifiers::ANDROID);
} | Check if the user agent represents an Android device.
@return bool True if the user agent is from an Android device, false otherwise. | isAndroid | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isWindows()
{
return Utilities::inString($this->agent, Identifiers::WINDOWS);
} | Check if the user agent represents a Windows system.
@return bool True if the user agent is from a Windows system, false otherwise. | isWindows | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isWindowsPhone()
{
return Utilities::inString($this->agent, Identifiers::WINDOWS_PHONE);
} | Check if the user agent represents a Windows Phone device.
@return bool True if the user agent is from a Windows Phone device, false otherwise. | isWindowsPhone | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isTablet()
{
$mobileDetect = new MobileDetect(null, $this->agent);
return $mobileDetect->isTablet();
} | Check if the user agent represents a tablet device.
@return bool True if the user agent is from a tablet device, false otherwise. | isTablet | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function isCrawler()
{
return (new CrawlerDetect())->isCrawler($this->agent);
} | Check if the user agent is identified as a crawler.
@return bool True if the user agent is identified as a crawler, false otherwise. | isCrawler | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function getCrawler()
{
$CrawlerDetect = new CrawlerDetect();
$CrawlerDetect->isCrawler($this->agent);
return $CrawlerDetect->getMatches();
} | Get the matches from the crawler detection.
@return array An array containing matches from the crawler detection. | getCrawler | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function match(string $regex)
{
return stripos($this->agent, $regex) !== false;
} | Check if the user agent matches a given regex pattern.
@param string $regex The regex pattern to match.
@return bool True if the user agent matches the regex pattern, false otherwise. | match | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public function clientOS()
{
$operatingSystems = Identifiers::OPERATING_SYSTEM;
foreach ($operatingSystems as $pattern => $os) {
if (preg_match($pattern, $this->agent)) {
return $os;
}
}
return 'Unknown';
} | Get the client's operating system.
@return string The client's operating system. | clientOS | php | rmunate/AgentDetection | src/Server/UserAgent.php | https://github.com/rmunate/AgentDetection/blob/master/src/Server/UserAgent.php | MIT |
public static function inString(string $value, array $keywords)
{
foreach ($keywords as $keyword) {
if (stripos($value, $keyword) !== false) {
return true;
}
}
return false;
} | Check if a string contains any of the specified keywords.
@param string $value The string to check.
@param array $keywords An array of keywords to search for.
@return bool True if the string contains any keyword, false otherwise. | inString | php | rmunate/AgentDetection | src/Tools/Utilities.php | https://github.com/rmunate/AgentDetection/blob/master/src/Tools/Utilities.php | MIT |
public static function create(string $message)
{
return new self("Rmunate\\AgentDetection\\Agent - Exception - {$message}");
} | Create a new AgentException instance with a personalized message.
@param string $message The exception message.
@return AgentException | create | php | rmunate/AgentDetection | src/Exceptions/AgentException.php | https://github.com/rmunate/AgentDetection/blob/master/src/Exceptions/AgentException.php | MIT |
static public function init()
{
if (is_null(self::$conn)) {
$capsule = new Capsule;
$capsule->addConnection([
'driver' => 'mysql',
'host' => 'localhost',
'database' => 'illuminate_non_laravel',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
], 'mysql');
$capsule->addConnection([
'driver' => 'sqlite',
'database' => 'database.sqlite',
'prefix' => '',
]);
$capsule->setEventDispatcher(new Dispatcher(new Container));
// Set the cache manager instance used by connections... (optional)
// $capsule->setCacheManager(...);
// Make this Capsule instance available globally via static methods... (optional)
$capsule->setAsGlobal();
// Setup the Eloquent ORM... (optional; unless you've used setEventDispatcher())
$capsule->bootEloquent();
}
} | Initialize capsule and store reference to connection | init | php | mattstauffer/Torch | components/database/app/Eloquent/Encapsulator.php | https://github.com/mattstauffer/Torch/blob/master/components/database/app/Eloquent/Encapsulator.php | MIT |
public function setPassableThroughUrl($passableThroughUrl)
{
$this->passableThroughUrl = $passableThroughUrl;
return $this;
} | Set whether parameter is passable through URL
@param boolean $passableThroughUrl
@return TestVariable | setPassableThroughUrl | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestVariable.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestVariable.php | Apache-2.0 |
public function isPassableThroughUrl()
{
return $this->passableThroughUrl;
} | Check if parameter is passable through URL
@return boolean | isPassableThroughUrl | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestVariable.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestVariable.php | Apache-2.0 |
public function addBaseTemplateForTest(Test $test)
{
$this->baseTemplateForTests[] = $test;
return $this;
} | Add test that uses template as base
@param Test $test
@return ViewTemplate | addBaseTemplateForTest | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/ViewTemplate.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/ViewTemplate.php | Apache-2.0 |
public function removeBaseTemplateForTest(Test $test)
{
$this->baseTemplateForTests->removeElement($test);
} | Remove test that uses template as base
@param Test $test | removeBaseTemplateForTest | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/ViewTemplate.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/ViewTemplate.php | Apache-2.0 |
public function getBaseTemplateForTests()
{
return $this->baseTemplateForTests->toArray();
} | Get tests that uses template as base
@return array | getBaseTemplateForTests | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/ViewTemplate.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/ViewTemplate.php | Apache-2.0 |
public function isBasedOnWizard()
{
return $this->sourceWizard != null;
} | Tells if test is based on test wizard
@return boolean | isBasedOnWizard | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/Test.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/Test.php | Apache-2.0 |
public function addSourceForNodes(TestNode $node)
{
$this->sourceForNodes[] = $node;
return $this;
} | Add node that this test is source for
@param TestNode $node
@return Test | addSourceForNodes | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/Test.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/Test.php | Apache-2.0 |
public function removeSourceForNodes(TestNode $node)
{
$this->sourceForNodes->removeElement($node);
} | Remove node that this test is source for
@param TestNode $node | removeSourceForNodes | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/Test.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/Test.php | Apache-2.0 |
public function getSourceForNodes()
{
return $this->sourceForNodes->toArray();
} | Get nodes that this test is source for
@return array | getSourceForNodes | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/Test.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/Test.php | Apache-2.0 |
public function hasWizardSource()
{
return $this->type != self::TYPE_WIZARD || ($this->type == self::TYPE_WIZARD && $this->sourceWizard != null);
} | Checks if source test is selected for test wizard.
@return boolean
@Assert\IsTrue(message = "validate.test.wizard.source") | hasWizardSource | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/Test.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/Test.php | Apache-2.0 |
public function hasDefaultReturnFunction()
{
return $this->defaultReturnFunction;
} | Returns true if connection has default return function.
@return boolean | hasDefaultReturnFunction | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodeConnection.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodeConnection.php | Apache-2.0 |
public function setDefaultReturnFunction($default)
{
$this->defaultReturnFunction = $default;
} | Set whether connection has default return function.
@param boolean $default | setDefaultReturnFunction | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodeConnection.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodeConnection.php | Apache-2.0 |
public function isPasswordCorrect()
{
return $this->password === $this->passwordConfirmation;
} | Checks if password is correct by comparing password and password confirmation
@return boolean
@Assert\IsTrue(message = "validate.user.password.match", groups={"create"}) | isPasswordCorrect | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/User.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/User.php | Apache-2.0 |
public function isString()
{
return $this->string;
} | Returns if a port value should be treated as string.
@return boolean | isString | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function setString($string)
{
$this->string = $string;
} | Set if port value should be treated as string.
@param boolean $string | setString | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function hasDefaultValue()
{
return $this->defaultValue;
} | Returns true if port has default value.
@return boolean | hasDefaultValue | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function setDefaultValue($defaultValue)
{
$this->defaultValue = $defaultValue;
} | Set whether port has default value.
@param boolean $defaultValue | setDefaultValue | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function isDynamic()
{
return $this->dynamic;
} | Returns true if port is dynamic.
@return boolean | isDynamic | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function isExposed()
{
return $this->exposed;
} | Returns true if port is exposed.
@return boolean | isExposed | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function isPointer()
{
return $this->pointer;
} | Returns true if port is pointer.
@return boolean | isPointer | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function getSourceForConnections()
{
//return $this->getNode()->getFlowTest()->getNodesConnectionsBySourcePort($this);
return $this->sourceForConnections->toArray();
} | Get connections where port is source
@return array | getSourceForConnections | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function getDestinationForConnections()
{
//return $this->getNode()->getFlowTest()->getNodesConnectionsByDestinationPort($this);
return $this->destinationForConnections->toArray();
} | Get connections where port is destination
@return array | getDestinationForConnections | php | campsych/concerto-platform | src/Concerto/PanelBundle/Entity/TestNodePort.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Entity/TestNodePort.php | Apache-2.0 |
public function rDocumentationWindowAction()
{
return $this->genericWindowAction(
'r_documentation_generation_help.html', array(
'root_dir' => $this->rootDir,
'is_win' => AdministrationService::getOS() == AdministrationService::OS_WIN
)
);
} | Extended action with added custom parameters.
@Route("/dialog/r_documentation_generation_help.html", name="Dialog_rdoc")
@return Response | rDocumentationWindowAction | php | campsych/concerto-platform | src/Concerto/PanelBundle/Controller/DialogController.php | https://github.com/campsych/concerto-platform/blob/master/src/Concerto/PanelBundle/Controller/DialogController.php | Apache-2.0 |
public function getConfigurationProfileBlockChanges()
{
if (array_key_exists("configurationProfileBlockChanges", $this->_propDict)) {
return $this->_propDict["configurationProfileBlockChanges"];
} else {
return null;
}
} | Gets the configurationProfileBlockChanges
Indicates whether or not to block the user from installing configuration profiles and certificates interactively when the device is in supervised mode.
@return bool|null The configurationProfileBlockChanges | getConfigurationProfileBlockChanges | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setConfigurationProfileBlockChanges($val)
{
$this->_propDict["configurationProfileBlockChanges"] = boolval($val);
return $this;
} | Sets the configurationProfileBlockChanges
Indicates whether or not to block the user from installing configuration profiles and certificates interactively when the device is in supervised mode.
@param bool $val The configurationProfileBlockChanges
@return IosGeneralDeviceConfiguration | setConfigurationProfileBlockChanges | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getContactsAllowManagedToUnmanagedWrite()
{
if (array_key_exists("contactsAllowManagedToUnmanagedWrite", $this->_propDict)) {
return $this->_propDict["contactsAllowManagedToUnmanagedWrite"];
} else {
return null;
}
} | Gets the contactsAllowManagedToUnmanagedWrite
Indicates whether or not managed apps can write contacts to unmanaged contacts accounts (iOS 12.0 and later).
@return bool|null The contactsAllowManagedToUnmanagedWrite | getContactsAllowManagedToUnmanagedWrite | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setContactsAllowManagedToUnmanagedWrite($val)
{
$this->_propDict["contactsAllowManagedToUnmanagedWrite"] = boolval($val);
return $this;
} | Sets the contactsAllowManagedToUnmanagedWrite
Indicates whether or not managed apps can write contacts to unmanaged contacts accounts (iOS 12.0 and later).
@param bool $val The contactsAllowManagedToUnmanagedWrite
@return IosGeneralDeviceConfiguration | setContactsAllowManagedToUnmanagedWrite | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getContactsAllowUnmanagedToManagedRead()
{
if (array_key_exists("contactsAllowUnmanagedToManagedRead", $this->_propDict)) {
return $this->_propDict["contactsAllowUnmanagedToManagedRead"];
} else {
return null;
}
} | Gets the contactsAllowUnmanagedToManagedRead
Indicates whether or not unmanaged apps can read from managed contacts accounts (iOS 12.0 or later).
@return bool|null The contactsAllowUnmanagedToManagedRead | getContactsAllowUnmanagedToManagedRead | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setContactsAllowUnmanagedToManagedRead($val)
{
$this->_propDict["contactsAllowUnmanagedToManagedRead"] = boolval($val);
return $this;
} | Sets the contactsAllowUnmanagedToManagedRead
Indicates whether or not unmanaged apps can read from managed contacts accounts (iOS 12.0 or later).
@param bool $val The contactsAllowUnmanagedToManagedRead
@return IosGeneralDeviceConfiguration | setContactsAllowUnmanagedToManagedRead | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getContinuousPathKeyboardBlocked()
{
if (array_key_exists("continuousPathKeyboardBlocked", $this->_propDict)) {
return $this->_propDict["continuousPathKeyboardBlocked"];
} else {
return null;
}
} | Gets the continuousPathKeyboardBlocked
Indicates whether or not to block the continuous path keyboard when the device is supervised (iOS 13 or later).
@return bool|null The continuousPathKeyboardBlocked | getContinuousPathKeyboardBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setContinuousPathKeyboardBlocked($val)
{
$this->_propDict["continuousPathKeyboardBlocked"] = boolval($val);
return $this;
} | Sets the continuousPathKeyboardBlocked
Indicates whether or not to block the continuous path keyboard when the device is supervised (iOS 13 or later).
@param bool $val The continuousPathKeyboardBlocked
@return IosGeneralDeviceConfiguration | setContinuousPathKeyboardBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getDateAndTimeForceSetAutomatically()
{
if (array_key_exists("dateAndTimeForceSetAutomatically", $this->_propDict)) {
return $this->_propDict["dateAndTimeForceSetAutomatically"];
} else {
return null;
}
} | Gets the dateAndTimeForceSetAutomatically
Indicates whether or not the Date and Time 'Set Automatically' feature is enabled and cannot be turned off by the user (iOS 12.0 and later).
@return bool|null The dateAndTimeForceSetAutomatically | getDateAndTimeForceSetAutomatically | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setDateAndTimeForceSetAutomatically($val)
{
$this->_propDict["dateAndTimeForceSetAutomatically"] = boolval($val);
return $this;
} | Sets the dateAndTimeForceSetAutomatically
Indicates whether or not the Date and Time 'Set Automatically' feature is enabled and cannot be turned off by the user (iOS 12.0 and later).
@param bool $val The dateAndTimeForceSetAutomatically
@return IosGeneralDeviceConfiguration | setDateAndTimeForceSetAutomatically | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getDeviceBlockEnableRestrictions()
{
if (array_key_exists("deviceBlockEnableRestrictions", $this->_propDict)) {
return $this->_propDict["deviceBlockEnableRestrictions"];
} else {
return null;
}
} | Gets the deviceBlockEnableRestrictions
Indicates whether or not to allow the user to enables restrictions in the device settings when the device is in supervised mode.
@return bool|null The deviceBlockEnableRestrictions | getDeviceBlockEnableRestrictions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setDeviceBlockEnableRestrictions($val)
{
$this->_propDict["deviceBlockEnableRestrictions"] = boolval($val);
return $this;
} | Sets the deviceBlockEnableRestrictions
Indicates whether or not to allow the user to enables restrictions in the device settings when the device is in supervised mode.
@param bool $val The deviceBlockEnableRestrictions
@return IosGeneralDeviceConfiguration | setDeviceBlockEnableRestrictions | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getDeviceBlockEraseContentAndSettings()
{
if (array_key_exists("deviceBlockEraseContentAndSettings", $this->_propDict)) {
return $this->_propDict["deviceBlockEraseContentAndSettings"];
} else {
return null;
}
} | Gets the deviceBlockEraseContentAndSettings
Indicates whether or not to allow the use of the 'Erase all content and settings' option on the device when the device is in supervised mode.
@return bool|null The deviceBlockEraseContentAndSettings | getDeviceBlockEraseContentAndSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setDeviceBlockEraseContentAndSettings($val)
{
$this->_propDict["deviceBlockEraseContentAndSettings"] = boolval($val);
return $this;
} | Sets the deviceBlockEraseContentAndSettings
Indicates whether or not to allow the use of the 'Erase all content and settings' option on the device when the device is in supervised mode.
@param bool $val The deviceBlockEraseContentAndSettings
@return IosGeneralDeviceConfiguration | setDeviceBlockEraseContentAndSettings | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getDeviceBlockNameModification()
{
if (array_key_exists("deviceBlockNameModification", $this->_propDict)) {
return $this->_propDict["deviceBlockNameModification"];
} else {
return null;
}
} | Gets the deviceBlockNameModification
Indicates whether or not to allow device name modification when the device is in supervised mode (iOS 9.0 and later).
@return bool|null The deviceBlockNameModification | getDeviceBlockNameModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setDeviceBlockNameModification($val)
{
$this->_propDict["deviceBlockNameModification"] = boolval($val);
return $this;
} | Sets the deviceBlockNameModification
Indicates whether or not to allow device name modification when the device is in supervised mode (iOS 9.0 and later).
@param bool $val The deviceBlockNameModification
@return IosGeneralDeviceConfiguration | setDeviceBlockNameModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getDiagnosticDataBlockSubmissionModification()
{
if (array_key_exists("diagnosticDataBlockSubmissionModification", $this->_propDict)) {
return $this->_propDict["diagnosticDataBlockSubmissionModification"];
} else {
return null;
}
} | Gets the diagnosticDataBlockSubmissionModification
Indicates whether or not to allow diagnostics submission settings modification when the device is in supervised mode (iOS 9.3.2 and later).
@return bool|null The diagnosticDataBlockSubmissionModification | getDiagnosticDataBlockSubmissionModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setDiagnosticDataBlockSubmissionModification($val)
{
$this->_propDict["diagnosticDataBlockSubmissionModification"] = boolval($val);
return $this;
} | Sets the diagnosticDataBlockSubmissionModification
Indicates whether or not to allow diagnostics submission settings modification when the device is in supervised mode (iOS 9.3.2 and later).
@param bool $val The diagnosticDataBlockSubmissionModification
@return IosGeneralDeviceConfiguration | setDiagnosticDataBlockSubmissionModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getDocumentsBlockManagedDocumentsInUnmanagedApps()
{
if (array_key_exists("documentsBlockManagedDocumentsInUnmanagedApps", $this->_propDict)) {
return $this->_propDict["documentsBlockManagedDocumentsInUnmanagedApps"];
} else {
return null;
}
} | Gets the documentsBlockManagedDocumentsInUnmanagedApps
Indicates whether or not to block the user from viewing managed documents in unmanaged apps.
@return bool|null The documentsBlockManagedDocumentsInUnmanagedApps | getDocumentsBlockManagedDocumentsInUnmanagedApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setDocumentsBlockManagedDocumentsInUnmanagedApps($val)
{
$this->_propDict["documentsBlockManagedDocumentsInUnmanagedApps"] = boolval($val);
return $this;
} | Sets the documentsBlockManagedDocumentsInUnmanagedApps
Indicates whether or not to block the user from viewing managed documents in unmanaged apps.
@param bool $val The documentsBlockManagedDocumentsInUnmanagedApps
@return IosGeneralDeviceConfiguration | setDocumentsBlockManagedDocumentsInUnmanagedApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getDocumentsBlockUnmanagedDocumentsInManagedApps()
{
if (array_key_exists("documentsBlockUnmanagedDocumentsInManagedApps", $this->_propDict)) {
return $this->_propDict["documentsBlockUnmanagedDocumentsInManagedApps"];
} else {
return null;
}
} | Gets the documentsBlockUnmanagedDocumentsInManagedApps
Indicates whether or not to block the user from viewing unmanaged documents in managed apps.
@return bool|null The documentsBlockUnmanagedDocumentsInManagedApps | getDocumentsBlockUnmanagedDocumentsInManagedApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setDocumentsBlockUnmanagedDocumentsInManagedApps($val)
{
$this->_propDict["documentsBlockUnmanagedDocumentsInManagedApps"] = boolval($val);
return $this;
} | Sets the documentsBlockUnmanagedDocumentsInManagedApps
Indicates whether or not to block the user from viewing unmanaged documents in managed apps.
@param bool $val The documentsBlockUnmanagedDocumentsInManagedApps
@return IosGeneralDeviceConfiguration | setDocumentsBlockUnmanagedDocumentsInManagedApps | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getEnterpriseAppBlockTrust()
{
if (array_key_exists("enterpriseAppBlockTrust", $this->_propDict)) {
return $this->_propDict["enterpriseAppBlockTrust"];
} else {
return null;
}
} | Gets the enterpriseAppBlockTrust
Indicates whether or not to block the user from trusting an enterprise app.
@return bool|null The enterpriseAppBlockTrust | getEnterpriseAppBlockTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setEnterpriseAppBlockTrust($val)
{
$this->_propDict["enterpriseAppBlockTrust"] = boolval($val);
return $this;
} | Sets the enterpriseAppBlockTrust
Indicates whether or not to block the user from trusting an enterprise app.
@param bool $val The enterpriseAppBlockTrust
@return IosGeneralDeviceConfiguration | setEnterpriseAppBlockTrust | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getEnterpriseAppBlockTrustModification()
{
if (array_key_exists("enterpriseAppBlockTrustModification", $this->_propDict)) {
return $this->_propDict["enterpriseAppBlockTrustModification"];
} else {
return null;
}
} | Gets the enterpriseAppBlockTrustModification
[Deprecated] Configuring this setting and setting the value to 'true' has no effect on the device.
@return bool|null The enterpriseAppBlockTrustModification | getEnterpriseAppBlockTrustModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setEnterpriseAppBlockTrustModification($val)
{
$this->_propDict["enterpriseAppBlockTrustModification"] = boolval($val);
return $this;
} | Sets the enterpriseAppBlockTrustModification
[Deprecated] Configuring this setting and setting the value to 'true' has no effect on the device.
@param bool $val The enterpriseAppBlockTrustModification
@return IosGeneralDeviceConfiguration | setEnterpriseAppBlockTrustModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getEnterpriseBookBlockBackup()
{
if (array_key_exists("enterpriseBookBlockBackup", $this->_propDict)) {
return $this->_propDict["enterpriseBookBlockBackup"];
} else {
return null;
}
} | Gets the enterpriseBookBlockBackup
Indicates whether or not Enterprise book back up is blocked.
@return bool|null The enterpriseBookBlockBackup | getEnterpriseBookBlockBackup | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setEnterpriseBookBlockBackup($val)
{
$this->_propDict["enterpriseBookBlockBackup"] = boolval($val);
return $this;
} | Sets the enterpriseBookBlockBackup
Indicates whether or not Enterprise book back up is blocked.
@param bool $val The enterpriseBookBlockBackup
@return IosGeneralDeviceConfiguration | setEnterpriseBookBlockBackup | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getEnterpriseBookBlockMetadataSync()
{
if (array_key_exists("enterpriseBookBlockMetadataSync", $this->_propDict)) {
return $this->_propDict["enterpriseBookBlockMetadataSync"];
} else {
return null;
}
} | Gets the enterpriseBookBlockMetadataSync
Indicates whether or not Enterprise book notes and highlights sync is blocked.
@return bool|null The enterpriseBookBlockMetadataSync | getEnterpriseBookBlockMetadataSync | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setEnterpriseBookBlockMetadataSync($val)
{
$this->_propDict["enterpriseBookBlockMetadataSync"] = boolval($val);
return $this;
} | Sets the enterpriseBookBlockMetadataSync
Indicates whether or not Enterprise book notes and highlights sync is blocked.
@param bool $val The enterpriseBookBlockMetadataSync
@return IosGeneralDeviceConfiguration | setEnterpriseBookBlockMetadataSync | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getEsimBlockModification()
{
if (array_key_exists("esimBlockModification", $this->_propDict)) {
return $this->_propDict["esimBlockModification"];
} else {
return null;
}
} | Gets the esimBlockModification
Indicates whether or not to allow the addition or removal of cellular plans on the eSIM of a supervised device.
@return bool|null The esimBlockModification | getEsimBlockModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setEsimBlockModification($val)
{
$this->_propDict["esimBlockModification"] = boolval($val);
return $this;
} | Sets the esimBlockModification
Indicates whether or not to allow the addition or removal of cellular plans on the eSIM of a supervised device.
@param bool $val The esimBlockModification
@return IosGeneralDeviceConfiguration | setEsimBlockModification | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getFaceTimeBlocked()
{
if (array_key_exists("faceTimeBlocked", $this->_propDict)) {
return $this->_propDict["faceTimeBlocked"];
} else {
return null;
}
} | Gets the faceTimeBlocked
Indicates whether or not to block the user from using FaceTime. Requires a supervised device for iOS 13 and later.
@return bool|null The faceTimeBlocked | getFaceTimeBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setFaceTimeBlocked($val)
{
$this->_propDict["faceTimeBlocked"] = boolval($val);
return $this;
} | Sets the faceTimeBlocked
Indicates whether or not to block the user from using FaceTime. Requires a supervised device for iOS 13 and later.
@param bool $val The faceTimeBlocked
@return IosGeneralDeviceConfiguration | setFaceTimeBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getFilesNetworkDriveAccessBlocked()
{
if (array_key_exists("filesNetworkDriveAccessBlocked", $this->_propDict)) {
return $this->_propDict["filesNetworkDriveAccessBlocked"];
} else {
return null;
}
} | Gets the filesNetworkDriveAccessBlocked
Indicates if devices can access files or other resources on a network server using the Server Message Block (SMB) protocol. Available for devices running iOS and iPadOS, versions 13.0 and later.
@return bool|null The filesNetworkDriveAccessBlocked | getFilesNetworkDriveAccessBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setFilesNetworkDriveAccessBlocked($val)
{
$this->_propDict["filesNetworkDriveAccessBlocked"] = boolval($val);
return $this;
} | Sets the filesNetworkDriveAccessBlocked
Indicates if devices can access files or other resources on a network server using the Server Message Block (SMB) protocol. Available for devices running iOS and iPadOS, versions 13.0 and later.
@param bool $val The filesNetworkDriveAccessBlocked
@return IosGeneralDeviceConfiguration | setFilesNetworkDriveAccessBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getFilesUsbDriveAccessBlocked()
{
if (array_key_exists("filesUsbDriveAccessBlocked", $this->_propDict)) {
return $this->_propDict["filesUsbDriveAccessBlocked"];
} else {
return null;
}
} | Gets the filesUsbDriveAccessBlocked
Indicates if sevices with access can connect to and open files on a USB drive. Available for devices running iOS and iPadOS, versions 13.0 and later.
@return bool|null The filesUsbDriveAccessBlocked | getFilesUsbDriveAccessBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setFilesUsbDriveAccessBlocked($val)
{
$this->_propDict["filesUsbDriveAccessBlocked"] = boolval($val);
return $this;
} | Sets the filesUsbDriveAccessBlocked
Indicates if sevices with access can connect to and open files on a USB drive. Available for devices running iOS and iPadOS, versions 13.0 and later.
@param bool $val The filesUsbDriveAccessBlocked
@return IosGeneralDeviceConfiguration | setFilesUsbDriveAccessBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getFindMyDeviceInFindMyAppBlocked()
{
if (array_key_exists("findMyDeviceInFindMyAppBlocked", $this->_propDict)) {
return $this->_propDict["findMyDeviceInFindMyAppBlocked"];
} else {
return null;
}
} | Gets the findMyDeviceInFindMyAppBlocked
Indicates whether or not to block Find My Device when the device is supervised (iOS 13 or later).
@return bool|null The findMyDeviceInFindMyAppBlocked | getFindMyDeviceInFindMyAppBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setFindMyDeviceInFindMyAppBlocked($val)
{
$this->_propDict["findMyDeviceInFindMyAppBlocked"] = boolval($val);
return $this;
} | Sets the findMyDeviceInFindMyAppBlocked
Indicates whether or not to block Find My Device when the device is supervised (iOS 13 or later).
@param bool $val The findMyDeviceInFindMyAppBlocked
@return IosGeneralDeviceConfiguration | setFindMyDeviceInFindMyAppBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getFindMyFriendsBlocked()
{
if (array_key_exists("findMyFriendsBlocked", $this->_propDict)) {
return $this->_propDict["findMyFriendsBlocked"];
} else {
return null;
}
} | Gets the findMyFriendsBlocked
Indicates whether or not to block changes to Find My Friends when the device is in supervised mode.
@return bool|null The findMyFriendsBlocked | getFindMyFriendsBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setFindMyFriendsBlocked($val)
{
$this->_propDict["findMyFriendsBlocked"] = boolval($val);
return $this;
} | Sets the findMyFriendsBlocked
Indicates whether or not to block changes to Find My Friends when the device is in supervised mode.
@param bool $val The findMyFriendsBlocked
@return IosGeneralDeviceConfiguration | setFindMyFriendsBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getFindMyFriendsInFindMyAppBlocked()
{
if (array_key_exists("findMyFriendsInFindMyAppBlocked", $this->_propDict)) {
return $this->_propDict["findMyFriendsInFindMyAppBlocked"];
} else {
return null;
}
} | Gets the findMyFriendsInFindMyAppBlocked
Indicates whether or not to block Find My Friends when the device is supervised (iOS 13 or later).
@return bool|null The findMyFriendsInFindMyAppBlocked | getFindMyFriendsInFindMyAppBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setFindMyFriendsInFindMyAppBlocked($val)
{
$this->_propDict["findMyFriendsInFindMyAppBlocked"] = boolval($val);
return $this;
} | Sets the findMyFriendsInFindMyAppBlocked
Indicates whether or not to block Find My Friends when the device is supervised (iOS 13 or later).
@param bool $val The findMyFriendsInFindMyAppBlocked
@return IosGeneralDeviceConfiguration | setFindMyFriendsInFindMyAppBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getGamingBlockGameCenterFriends()
{
if (array_key_exists("gamingBlockGameCenterFriends", $this->_propDict)) {
return $this->_propDict["gamingBlockGameCenterFriends"];
} else {
return null;
}
} | Gets the gamingBlockGameCenterFriends
Indicates whether or not to block the user from having friends in Game Center. Requires a supervised device for iOS 13 and later.
@return bool|null The gamingBlockGameCenterFriends | getGamingBlockGameCenterFriends | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setGamingBlockGameCenterFriends($val)
{
$this->_propDict["gamingBlockGameCenterFriends"] = boolval($val);
return $this;
} | Sets the gamingBlockGameCenterFriends
Indicates whether or not to block the user from having friends in Game Center. Requires a supervised device for iOS 13 and later.
@param bool $val The gamingBlockGameCenterFriends
@return IosGeneralDeviceConfiguration | setGamingBlockGameCenterFriends | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getGamingBlockMultiplayer()
{
if (array_key_exists("gamingBlockMultiplayer", $this->_propDict)) {
return $this->_propDict["gamingBlockMultiplayer"];
} else {
return null;
}
} | Gets the gamingBlockMultiplayer
Indicates whether or not to block the user from using multiplayer gaming. Requires a supervised device for iOS 13 and later.
@return bool|null The gamingBlockMultiplayer | getGamingBlockMultiplayer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setGamingBlockMultiplayer($val)
{
$this->_propDict["gamingBlockMultiplayer"] = boolval($val);
return $this;
} | Sets the gamingBlockMultiplayer
Indicates whether or not to block the user from using multiplayer gaming. Requires a supervised device for iOS 13 and later.
@param bool $val The gamingBlockMultiplayer
@return IosGeneralDeviceConfiguration | setGamingBlockMultiplayer | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getHostPairingBlocked()
{
if (array_key_exists("hostPairingBlocked", $this->_propDict)) {
return $this->_propDict["hostPairingBlocked"];
} else {
return null;
}
} | Gets the hostPairingBlocked
indicates whether or not to allow host pairing to control the devices an iOS device can pair with when the iOS device is in supervised mode.
@return bool|null The hostPairingBlocked | getHostPairingBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setHostPairingBlocked($val)
{
$this->_propDict["hostPairingBlocked"] = boolval($val);
return $this;
} | Sets the hostPairingBlocked
indicates whether or not to allow host pairing to control the devices an iOS device can pair with when the iOS device is in supervised mode.
@param bool $val The hostPairingBlocked
@return IosGeneralDeviceConfiguration | setHostPairingBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getIBooksStoreBlocked()
{
if (array_key_exists("iBooksStoreBlocked", $this->_propDict)) {
return $this->_propDict["iBooksStoreBlocked"];
} else {
return null;
}
} | Gets the iBooksStoreBlocked
Indicates whether or not to block the user from using the iBooks Store when the device is in supervised mode.
@return bool|null The iBooksStoreBlocked | getIBooksStoreBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setIBooksStoreBlocked($val)
{
$this->_propDict["iBooksStoreBlocked"] = boolval($val);
return $this;
} | Sets the iBooksStoreBlocked
Indicates whether or not to block the user from using the iBooks Store when the device is in supervised mode.
@param bool $val The iBooksStoreBlocked
@return IosGeneralDeviceConfiguration | setIBooksStoreBlocked | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getIBooksStoreBlockErotica()
{
if (array_key_exists("iBooksStoreBlockErotica", $this->_propDict)) {
return $this->_propDict["iBooksStoreBlockErotica"];
} else {
return null;
}
} | Gets the iBooksStoreBlockErotica
Indicates whether or not to block the user from downloading media from the iBookstore that has been tagged as erotica.
@return bool|null The iBooksStoreBlockErotica | getIBooksStoreBlockErotica | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setIBooksStoreBlockErotica($val)
{
$this->_propDict["iBooksStoreBlockErotica"] = boolval($val);
return $this;
} | Sets the iBooksStoreBlockErotica
Indicates whether or not to block the user from downloading media from the iBookstore that has been tagged as erotica.
@param bool $val The iBooksStoreBlockErotica
@return IosGeneralDeviceConfiguration | setIBooksStoreBlockErotica | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getICloudBlockBackup()
{
if (array_key_exists("iCloudBlockBackup", $this->_propDict)) {
return $this->_propDict["iCloudBlockBackup"];
} else {
return null;
}
} | Gets the iCloudBlockBackup
Indicates whether or not to block iCloud backup. Requires a supervised device for iOS 13 and later.
@return bool|null The iCloudBlockBackup | getICloudBlockBackup | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setICloudBlockBackup($val)
{
$this->_propDict["iCloudBlockBackup"] = boolval($val);
return $this;
} | Sets the iCloudBlockBackup
Indicates whether or not to block iCloud backup. Requires a supervised device for iOS 13 and later.
@param bool $val The iCloudBlockBackup
@return IosGeneralDeviceConfiguration | setICloudBlockBackup | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getICloudBlockManagedAppsSync()
{
if (array_key_exists("iCloudBlockManagedAppsSync", $this->_propDict)) {
return $this->_propDict["iCloudBlockManagedAppsSync"];
} else {
return null;
}
} | Gets the iCloudBlockManagedAppsSync
Indicates whether or not to block Managed Apps Cloud Sync.
@return bool|null The iCloudBlockManagedAppsSync | getICloudBlockManagedAppsSync | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function setICloudBlockManagedAppsSync($val)
{
$this->_propDict["iCloudBlockManagedAppsSync"] = boolval($val);
return $this;
} | Sets the iCloudBlockManagedAppsSync
Indicates whether or not to block Managed Apps Cloud Sync.
@param bool $val The iCloudBlockManagedAppsSync
@return IosGeneralDeviceConfiguration | setICloudBlockManagedAppsSync | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
public function getICloudBlockPhotoStreamSync()
{
if (array_key_exists("iCloudBlockPhotoStreamSync", $this->_propDict)) {
return $this->_propDict["iCloudBlockPhotoStreamSync"];
} else {
return null;
}
} | Gets the iCloudBlockPhotoStreamSync
Indicates whether or not to block iCloud Photo Stream Sync.
@return bool|null The iCloudBlockPhotoStreamSync | getICloudBlockPhotoStreamSync | php | xiebruce/PicUploader | vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | https://github.com/xiebruce/PicUploader/blob/master/vendor/microsoft/microsoft-graph/src/Beta/Microsoft/Graph/Model/IosGeneralDeviceConfiguration.php | MIT |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.