File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/microsoft/microsoft-graph/src/Model/Site.php
Back
<?php /** * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information. * * Site File * PHP version 7 * * @category Library * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version GIT: 1.4.0 * @link https://graph.microsoft.io/ */ namespace Microsoft\Graph\Model; /** * Site class * * @category Model * @package Microsoft.Graph * @copyright © Microsoft Corporation. All rights reserved. * @license https://opensource.org/licenses/MIT MIT License * @version Release: 1.4.0 * @link https://graph.microsoft.io/ */ class Site extends BaseItem { /** * Gets the displayName * The full title for the site. Read-only. * * @return string The displayName */ public function getDisplayName() { if (array_key_exists("displayName", $this->_propDict)) { return $this->_propDict["displayName"]; } else { return null; } } /** * Sets the displayName * The full title for the site. Read-only. * * @param string $val The displayName * * @return Site */ public function setDisplayName($val) { $this->_propDict["displayName"] = $val; return $this; } /** * Gets the root * If present, indicates that this is the root site in the site collection. Read-only. * * @return Root The root */ public function getRoot() { if (array_key_exists("root", $this->_propDict)) { if (is_a($this->_propDict["root"], "Microsoft\Graph\Model\Root")) { return $this->_propDict["root"]; } else { $this->_propDict["root"] = new Root($this->_propDict["root"]); return $this->_propDict["root"]; } } return null; } /** * Sets the root * If present, indicates that this is the root site in the site collection. Read-only. * * @param Root $val The root * * @return Site */ public function setRoot($val) { $this->_propDict["root"] = $val; return $this; } /** * Gets the sharepointIds * Returns identifiers useful for SharePoint REST compatibility. Read-only. * * @return SharepointIds The sharepointIds */ public function getSharepointIds() { if (array_key_exists("sharepointIds", $this->_propDict)) { if (is_a($this->_propDict["sharepointIds"], "Microsoft\Graph\Model\SharepointIds")) { return $this->_propDict["sharepointIds"]; } else { $this->_propDict["sharepointIds"] = new SharepointIds($this->_propDict["sharepointIds"]); return $this->_propDict["sharepointIds"]; } } return null; } /** * Sets the sharepointIds * Returns identifiers useful for SharePoint REST compatibility. Read-only. * * @param SharepointIds $val The sharepointIds * * @return Site */ public function setSharepointIds($val) { $this->_propDict["sharepointIds"] = $val; return $this; } /** * Gets the siteCollection * Provides details about the site's site collection. Available only on the root site. Read-only. * * @return SiteCollection The siteCollection */ public function getSiteCollection() { if (array_key_exists("siteCollection", $this->_propDict)) { if (is_a($this->_propDict["siteCollection"], "Microsoft\Graph\Model\SiteCollection")) { return $this->_propDict["siteCollection"]; } else { $this->_propDict["siteCollection"] = new SiteCollection($this->_propDict["siteCollection"]); return $this->_propDict["siteCollection"]; } } return null; } /** * Sets the siteCollection * Provides details about the site's site collection. Available only on the root site. Read-only. * * @param SiteCollection $val The siteCollection * * @return Site */ public function setSiteCollection($val) { $this->_propDict["siteCollection"] = $val; return $this; } /** * Gets the analytics * Analytics about the view activities that took place in this site. * * @return ItemAnalytics The analytics */ public function getAnalytics() { if (array_key_exists("analytics", $this->_propDict)) { if (is_a($this->_propDict["analytics"], "Microsoft\Graph\Model\ItemAnalytics")) { return $this->_propDict["analytics"]; } else { $this->_propDict["analytics"] = new ItemAnalytics($this->_propDict["analytics"]); return $this->_propDict["analytics"]; } } return null; } /** * Sets the analytics * Analytics about the view activities that took place in this site. * * @param ItemAnalytics $val The analytics * * @return Site */ public function setAnalytics($val) { $this->_propDict["analytics"] = $val; return $this; } /** * Gets the columns * The collection of column definitions reusable across lists under this site. * * @return array The columns */ public function getColumns() { if (array_key_exists("columns", $this->_propDict)) { return $this->_propDict["columns"]; } else { return null; } } /** * Sets the columns * The collection of column definitions reusable across lists under this site. * * @param ColumnDefinition $val The columns * * @return Site */ public function setColumns($val) { $this->_propDict["columns"] = $val; return $this; } /** * Gets the contentTypes * The collection of content types defined for this site. * * @return array The contentTypes */ public function getContentTypes() { if (array_key_exists("contentTypes", $this->_propDict)) { return $this->_propDict["contentTypes"]; } else { return null; } } /** * Sets the contentTypes * The collection of content types defined for this site. * * @param ContentType $val The contentTypes * * @return Site */ public function setContentTypes($val) { $this->_propDict["contentTypes"] = $val; return $this; } /** * Gets the drive * The default drive (document library) for this site. * * @return Drive The drive */ public function getDrive() { if (array_key_exists("drive", $this->_propDict)) { if (is_a($this->_propDict["drive"], "Microsoft\Graph\Model\Drive")) { return $this->_propDict["drive"]; } else { $this->_propDict["drive"] = new Drive($this->_propDict["drive"]); return $this->_propDict["drive"]; } } return null; } /** * Sets the drive * The default drive (document library) for this site. * * @param Drive $val The drive * * @return Site */ public function setDrive($val) { $this->_propDict["drive"] = $val; return $this; } /** * Gets the drives * The collection of drives (document libraries) under this site. * * @return array The drives */ public function getDrives() { if (array_key_exists("drives", $this->_propDict)) { return $this->_propDict["drives"]; } else { return null; } } /** * Sets the drives * The collection of drives (document libraries) under this site. * * @param Drive $val The drives * * @return Site */ public function setDrives($val) { $this->_propDict["drives"] = $val; return $this; } /** * Gets the items * Used to address any item contained in this site. This collection cannot be enumerated. * * @return array The items */ public function getItems() { if (array_key_exists("items", $this->_propDict)) { return $this->_propDict["items"]; } else { return null; } } /** * Sets the items * Used to address any item contained in this site. This collection cannot be enumerated. * * @param BaseItem $val The items * * @return Site */ public function setItems($val) { $this->_propDict["items"] = $val; return $this; } /** * Gets the lists * The collection of lists under this site. * * @return array The lists */ public function getLists() { if (array_key_exists("lists", $this->_propDict)) { return $this->_propDict["lists"]; } else { return null; } } /** * Sets the lists * The collection of lists under this site. * * @param GraphList $val The lists * * @return Site */ public function setLists($val) { $this->_propDict["lists"] = $val; return $this; } /** * Gets the sites * The collection of the sub-sites under this site. * * @return array The sites */ public function getSites() { if (array_key_exists("sites", $this->_propDict)) { return $this->_propDict["sites"]; } else { return null; } } /** * Sets the sites * The collection of the sub-sites under this site. * * @param Site $val The sites * * @return Site */ public function setSites($val) { $this->_propDict["sites"] = $val; return $this; } /** * Gets the onenote * Calls the OneNote service for notebook related operations. * * @return Onenote The onenote */ public function getOnenote() { if (array_key_exists("onenote", $this->_propDict)) { if (is_a($this->_propDict["onenote"], "Microsoft\Graph\Model\Onenote")) { return $this->_propDict["onenote"]; } else { $this->_propDict["onenote"] = new Onenote($this->_propDict["onenote"]); return $this->_propDict["onenote"]; } } return null; } /** * Sets the onenote * Calls the OneNote service for notebook related operations. * * @param Onenote $val The onenote * * @return Site */ public function setOnenote($val) { $this->_propDict["onenote"] = $val; return $this; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings