code
stringlengths 15
9.96M
| docstring
stringlengths 1
10.1k
| func_name
stringlengths 1
124
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 6
186
| url
stringlengths 50
236
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function setMaxItemsPerThrottledOperation($value)
{
$this->setProperty("MaxItemsPerThrottledOperation", $value, true);
} | Specifies
the maximum number of list items allowed
to be returned for each retrieve request before throttling occurs. If
throttling occurs, list items MUST NOT be returned.
@var integer | setMaxItemsPerThrottledOperation | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getNeedsB2BUpgrade()
{
if (!$this->isPropertyAvailable("NeedsB2BUpgrade")) {
return null;
}
return $this->getProperty("NeedsB2BUpgrade");
} | Specifies
whether the site needs a Build-to-Build upgrade.
@return bool | getNeedsB2BUpgrade | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setNeedsB2BUpgrade($value)
{
$this->setProperty("NeedsB2BUpgrade", $value, true);
} | Specifies
whether the site needs a Build-to-Build upgrade.
@var bool | setNeedsB2BUpgrade | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getPrimaryUri()
{
if (!$this->isPropertyAvailable("PrimaryUri")) {
return null;
}
return $this->getProperty("PrimaryUri");
} | Specifies
the primary URI of this site
collection, including the host name, port number, and path.
@return string | getPrimaryUri | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setPrimaryUri($value)
{
$this->setProperty("PrimaryUri", $value, true);
} | Specifies
the primary URI of this site
collection, including the host name, port number, and path.
@var string | setPrimaryUri | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getReadOnly()
{
if (!$this->isPropertyAvailable("ReadOnly")) {
return null;
}
return $this->getProperty("ReadOnly");
} | Specifies
whether the site collection is
read-only and is unavailable for write access.<88>
@return bool | getReadOnly | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setReadOnly($value)
{
$this->setProperty("ReadOnly", $value, true);
} | Specifies
whether the site collection is
read-only and is unavailable for write access.<88>
@var bool | setReadOnly | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getRelatedGroupId()
{
if (!$this->isPropertyAvailable("RelatedGroupId")) {
return null;
}
return $this->getProperty("RelatedGroupId");
} | @return string | getRelatedGroupId | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setRelatedGroupId($value)
{
$this->setProperty("RelatedGroupId", $value, true);
} | @var string | setRelatedGroupId | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getRequiredDesignerVersion()
{
if (!$this->isPropertyAvailable("RequiredDesignerVersion")) {
return null;
}
return $this->getProperty("RequiredDesignerVersion");
} | Specifies
the required minimum version of the designer that can be
used on this site collection. The
default, if not disabled on the Web application, is
"15.0.0.0".
@return string | getRequiredDesignerVersion | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setRequiredDesignerVersion($value)
{
$this->setProperty("RequiredDesignerVersion", $value, true);
} | Specifies
the required minimum version of the designer that can be
used on this site collection. The
default, if not disabled on the Web application, is
"15.0.0.0".
@var string | setRequiredDesignerVersion | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getSandboxedCodeActivationCapability()
{
if (!$this->isPropertyAvailable("SandboxedCodeActivationCapability")) {
return null;
}
return $this->getProperty("SandboxedCodeActivationCapability");
} | Gets or
sets the sandboxed code capability for the site collection. The default is set
to Check.
@return integer | getSandboxedCodeActivationCapability | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setSandboxedCodeActivationCapability($value)
{
$this->setProperty("SandboxedCodeActivationCapability", $value, true);
} | Gets or
sets the sandboxed code capability for the site collection. The default is set
to Check.
@var integer | setSandboxedCodeActivationCapability | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getSearchBoxInNavBar()
{
return $this->getProperty("SearchBoxInNavBar");
} | @return integer | getSearchBoxInNavBar | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setSearchBoxInNavBar($value)
{
$this->setProperty("SearchBoxInNavBar", $value, true);
} | @var integer | setSearchBoxInNavBar | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getSearchBoxPlaceholderText()
{
if (!$this->isPropertyAvailable("SearchBoxPlaceholderText")) {
return null;
}
return $this->getProperty("SearchBoxPlaceholderText");
} | @return string | getSearchBoxPlaceholderText | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setSearchBoxPlaceholderText($value)
{
$this->setProperty("SearchBoxPlaceholderText", $value, true);
} | @var string | setSearchBoxPlaceholderText | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getServerRelativeUrl()
{
if (!$this->isPropertyAvailable("ServerRelativeUrl")) {
return null;
}
return $this->getProperty("ServerRelativeUrl");
} | Specifies
the server-relative
URL of the top-level site in
the site
collection.This
property MUST begin with a forward slash ("/").
@return string | getServerRelativeUrl | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setServerRelativeUrl($value)
{
$this->setProperty("ServerRelativeUrl", $value, true);
} | Specifies
the server-relative
URL of the top-level site in
the site
collection.This
property MUST begin with a forward slash ("/").
@var string | setServerRelativeUrl | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getShareByEmailEnabled()
{
if (!$this->isPropertyAvailable("ShareByEmailEnabled")) {
return null;
}
return $this->getProperty("ShareByEmailEnabled");
} | When true,
users will be able to grant permissions to guests for resources within the site
collection.
@return bool | getShareByEmailEnabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setShareByEmailEnabled($value)
{
$this->setProperty("ShareByEmailEnabled", $value, true);
} | When true,
users will be able to grant permissions to guests for resources within the site
collection.
@var bool | setShareByEmailEnabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getShareByLinkEnabled()
{
if (!$this->isPropertyAvailable("ShareByLinkEnabled")) {
return null;
}
return $this->getProperty("ShareByLinkEnabled");
} | Specifies
whether the user will be able to share links to the documents that can be
accessed without signing in.
@return bool | getShareByLinkEnabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setShareByLinkEnabled($value)
{
$this->setProperty("ShareByLinkEnabled", $value, true);
} | Specifies
whether the user will be able to share links to the documents that can be
accessed without signing in.
@var bool | setShareByLinkEnabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getShowPeoplePickerSuggestionsForGuestUsers()
{
if (!$this->isPropertyAvailable("ShowPeoplePickerSuggestionsForGuestUsers")) {
return null;
}
return $this->getProperty("ShowPeoplePickerSuggestionsForGuestUsers");
} | Represents
the option to search for existing guest users via the people picker.
@return bool | getShowPeoplePickerSuggestionsForGuestUsers | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setShowPeoplePickerSuggestionsForGuestUsers($value)
{
$this->setProperty("ShowPeoplePickerSuggestionsForGuestUsers", $value, true);
} | Represents
the option to search for existing guest users via the people picker.
@var bool | setShowPeoplePickerSuggestionsForGuestUsers | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getShowUrlStructure()
{
if (!$this->isPropertyAvailable("ShowUrlStructure")) {
return null;
}
return $this->getProperty("ShowUrlStructure");
} | Specifies
whether the URL structure of
this site
collection is viewable. See Microsoft.SharePoint.Client.Web.ShowURLStructureForCurrentUser,
which is the scalar property used to determine the behavior for the current
user. The default, if not disabled on the Web application, is
"false".
@return bool | getShowUrlStructure | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setShowUrlStructure($value)
{
$this->setProperty("ShowUrlStructure", $value, true);
} | Specifies
whether the URL structure of
this site
collection is viewable. See Microsoft.SharePoint.Client.Web.ShowURLStructureForCurrentUser,
which is the scalar property used to determine the behavior for the current
user. The default, if not disabled on the Web application, is
"false".
@var bool | setShowUrlStructure | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getSocialBarOnSitePagesDisabled()
{
if (!$this->isPropertyAvailable("SocialBarOnSitePagesDisabled")) {
return null;
}
return $this->getProperty("SocialBarOnSitePagesDisabled");
} | @return bool | getSocialBarOnSitePagesDisabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setSocialBarOnSitePagesDisabled($value)
{
$this->setProperty("SocialBarOnSitePagesDisabled", $value, true);
} | @var bool | setSocialBarOnSitePagesDisabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getStatusBarLink()
{
if (!$this->isPropertyAvailable("StatusBarLink")) {
return null;
}
return $this->getProperty("StatusBarLink");
} | Gets or
sets the status bar message link target for this site.
@return string | getStatusBarLink | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setStatusBarLink($value)
{
$this->setProperty("StatusBarLink", $value, true);
} | Gets or
sets the status bar message link target for this site.
@var string | setStatusBarLink | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getStatusBarText()
{
return $this->getProperty("StatusBarText");
} | Gets or
sets the status bar message text for this site.
@return string | getStatusBarText | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setStatusBarText($value)
{
return $this->setProperty("StatusBarText", $value, true);
} | Gets or
sets the status bar message text for this site.
@return self
@var string | setStatusBarText | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getThicketSupportDisabled()
{
return $this->getProperty("ThicketSupportDisabled");
} | Gets a
Boolean value to see if support for html thicket files is enabled or disabled.
@return bool | getThicketSupportDisabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setThicketSupportDisabled($value)
{
return $this->setProperty("ThicketSupportDisabled", $value, true);
} | Gets a
Boolean value to see if support for html thicket files is enabled or disabled.
@return self
@var bool | setThicketSupportDisabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getTrimAuditLog()
{
return $this->getProperty("TrimAuditLog");
} | When this
flag is set for the site, the audit events are trimmed periodically.
@return bool | getTrimAuditLog | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setTrimAuditLog($value)
{
return $this->setProperty("TrimAuditLog", $value, true);
} | When this
flag is set for the site, the audit events are trimmed periodically.
@return self
@var bool | setTrimAuditLog | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getUIVersionConfigurationEnabled()
{
return $this->getProperty("UIVersionConfigurationEnabled");
} | Specifies
whether the visual upgrade UI
for this site collection is
displayed.
@return bool | getUIVersionConfigurationEnabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setUIVersionConfigurationEnabled($value)
{
$this->setProperty("UIVersionConfigurationEnabled", $value, true);
} | Specifies
whether the visual upgrade UI
for this site collection is
displayed.
@var bool | setUIVersionConfigurationEnabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getUpgradeInfo()
{
return $this->getProperty("UpgradeInfo", new UpgradeInfo());
} | Specifies
the upgrade information of this site collection.
@return UpgradeInfo | getUpgradeInfo | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setUpgradeInfo($value)
{
return $this->setProperty("UpgradeInfo", $value, true);
} | Specifies
the upgrade information of this site collection.
@return self
@var UpgradeInfo | setUpgradeInfo | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getUpgradeReminderDate()
{
return $this->getProperty("UpgradeReminderDate");
} | Specifies
a date, after which site collection administrators
will be reminded to upgrade the site collection.
@return string | getUpgradeReminderDate | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setUpgradeReminderDate($value)
{
return $this->setProperty("UpgradeReminderDate", $value, true);
} | Specifies
a date, after which site collection administrators
will be reminded to upgrade the site collection.
@return self
@var string | setUpgradeReminderDate | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getUpgradeScheduled()
{
return $this->getProperty("UpgradeScheduled");
} | Specifies
whether the upgrade has been scheduled. It can only be set to false by a farm
administrator. To set it to true, set the UpgradeScheduledDate (section 3.2.5.119.1.1.34)
to a future time.
@return bool | getUpgradeScheduled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setUpgradeScheduled($value)
{
return $this->setProperty("UpgradeScheduled", $value, true);
} | Specifies
whether the upgrade has been scheduled. It can only be set to false by a farm
administrator. To set it to true, set the UpgradeScheduledDate (section 3.2.5.119.1.1.34)
to a future time.
@return self
@var bool | setUpgradeScheduled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getUpgradeScheduledDate()
{
return $this->getProperty("UpgradeScheduledDate");
} | Specifies
the upgrade scheduled date in UTC (Coordinated Universal
Time). Only the Date part is used. If UpgradeScheduled
(section 3.2.5.119.1.1.33)
is false, returns SqlDateTime.MinValue.
@return string | getUpgradeScheduledDate | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setUpgradeScheduledDate($value)
{
return $this->setProperty("UpgradeScheduledDate", $value, true);
} | Specifies
the upgrade scheduled date in UTC (Coordinated Universal
Time). Only the Date part is used. If UpgradeScheduled
(section 3.2.5.119.1.1.33)
is false, returns SqlDateTime.MinValue.
@return self
@var string | setUpgradeScheduledDate | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getUpgrading()
{
return $this->getProperty("Upgrading");
} | Specifies
whether the site collection is
currently being upgraded.
@return bool | getUpgrading | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setUpgrading($value)
{
return $this->setProperty("Upgrading", $value, true);
} | Specifies
whether the site collection is
currently being upgraded.
@return self
@var bool | setUpgrading | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getUrl()
{
return $this->getProperty("Url");
} | Specifies
the server-relative
URL of the top-level site in
the site
collection.This
property MUST begin with a forward slash ("/").
@return string | getUrl | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setUrl($value)
{
return $this->setProperty("Url", $value, true);
} | Specifies
the server-relative
URL of the top-level site in
the site
collection.This
property MUST begin with a forward slash ("/").
@return self
@var string | setUrl | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getUsage()
{
return $this->getProperty("Usage", new UsageInfo());
} | Specifies
usage information about the site (2), including
bandwidth, storage, and the number of visits to the site collection.
@return UsageInfo | getUsage | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setUsage($value)
{
return $this->setProperty("Usage", $value, true);
} | Specifies
usage information about the site (2), including
bandwidth, storage, and the number of visits to the site collection.
@return self
@var UsageInfo | setUsage | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getHubSiteSynchronizableVisitorGroup()
{
if (!$this->isPropertyAvailable("HubSiteSynchronizableVisitorGroup")) {
$this->setProperty("HubSiteSynchronizableVisitorGroup", new Group($this->getContext(), new ResourcePath("HubSiteSynchronizableVisitorGroup", $this->getResourcePath())));
}
return $this->getProperty("HubSiteSynchronizableVisitorGroup");
} | @return Group | getHubSiteSynchronizableVisitorGroup | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getOwner()
{
return $this->getProperty("Owner", new User($this->getContext(), new ResourcePath("Owner", $this->getResourcePath())));
} | Specifies
the owner of the site collection.<92>
@return User | getOwner | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getSecondaryContact()
{
return $this->getProperty("SecondaryContact", new User($this->getContext(), new ResourcePath("SecondaryContact", $this->getResourcePath())));
} | Gets or
sets the secondary contact that is used for the site collection. The user that
is specified by the SecondaryContact property SHOULD NOT be identical to
the user that is specified by the Owner (section 3.2.5.119.1.2.5)
property.
@return User | getSecondaryContact | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getAudit()
{
return $this->getProperty("Audit", new Audit($this->getContext(), new ResourcePath("Audit", $this->getResourcePath())));
} | Gets or
sets the number of days of audit log data to retain. If unset and audit
trimming is enabled, the retention defaults to one schedule window of the
administrator-configured schedule for trimming.
@return Audit | getAudit | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getRecycleBin()
{
if (!$this->isPropertyAvailable("RecycleBin")) {
$this->setProperty("RecycleBin", new RecycleBinItemCollection($this->getContext(), new ResourcePath("RecycleBin", $this->getResourcePath()), $this));
}
return $this->getProperty("RecycleBin");
} | Specifies
the collection of Recycle Bin items
for the site collection.
@return RecycleBinItemCollection | getRecycleBin | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getSensitivityLabelInfo()
{
return $this->getProperty("SensitivityLabelInfo", new SensitivityLabelInfo());
} | @return SensitivityLabelInfo | getSensitivityLabelInfo | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setSensitivityLabelInfo($value)
{
return $this->setProperty("SensitivityLabelInfo", $value, true);
} | @return self
@var SensitivityLabelInfo | setSensitivityLabelInfo | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getChannelGroupId()
{
return $this->getProperty("ChannelGroupId");
} | @return string | getChannelGroupId | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setChannelGroupId($value)
{
return $this->setProperty("ChannelGroupId", $value, true);
} | @return self
@var string | setChannelGroupId | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getCustomizedFormsPages()
{
if (!$this->isPropertyAvailable("CustomizedFormsPages")) {
return null;
}
return $this->getProperty("CustomizedFormsPages");
} | @return CustomizedFormsPageCollection | getCustomizedFormsPages | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setCustomizedFormsPages($value)
{
return $this->setProperty("CustomizedFormsPages", $value, true);
} | @return self
@var CustomizedFormsPageCollection | setCustomizedFormsPages | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getMediaTranscriptionDisabled()
{
return $this->getProperty("MediaTranscriptionDisabled");
} | @return bool | getMediaTranscriptionDisabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setMediaTranscriptionDisabled($value)
{
return $this->setProperty("MediaTranscriptionDisabled", $value, true);
} | @var bool | setMediaTranscriptionDisabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getSitePolicyEnabled()
{
return $this->getProperty("SitePolicyEnabled");
} | @return bool | getSitePolicyEnabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setSitePolicyEnabled($value)
{
return $this->setProperty("SitePolicyEnabled", $value, true);
} | @var bool | setSitePolicyEnabled | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getWriteLocked()
{
return $this->getProperty("WriteLocked");
} | @return bool | getWriteLocked | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setWriteLocked($value)
{
return $this->setProperty("WriteLocked", $value, true);
} | @var bool | setWriteLocked | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getAllowedExternalDomains()
{
return $this->getProperty("AllowedExternalDomains");
} | @return HTMLFieldSecuritySetting | getAllowedExternalDomains | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setAllowedExternalDomains($value)
{
return $this->setProperty("AllowedExternalDomains", $value, true);
} | @var HTMLFieldSecuritySetting | setAllowedExternalDomains | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getVersionPolicyForNewLibrariesTemplate()
{
return $this->getProperty("VersionPolicyForNewLibrariesTemplate", new SiteVersionPolicyManager($this->getContext(), new ResourcePath("VersionPolicyForNewLibrariesTemplate", $this->getResourcePath())));
} | @return SiteVersionPolicyManager | getVersionPolicyForNewLibrariesTemplate | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getIsRestrictedAccessControlPolicyEnforcedOnSite()
{
return $this->getProperty("IsRestrictedAccessControlPolicyEnforcedOnSite");
} | @return bool | getIsRestrictedAccessControlPolicyEnforcedOnSite | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setIsRestrictedAccessControlPolicyEnforcedOnSite($value)
{
return $this->setProperty("IsRestrictedAccessControlPolicyEnforcedOnSite", $value, true);
} | @var bool | setIsRestrictedAccessControlPolicyEnforcedOnSite | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getRestrictedAccessControlGroupsEnforcedOnSite()
{
return $this->getProperty("RestrictedAccessControlGroupsEnforcedOnSite");
} | @return array | getRestrictedAccessControlGroupsEnforcedOnSite | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setRestrictedAccessControlGroupsEnforcedOnSite($value)
{
return $this->setProperty("RestrictedAccessControlGroupsEnforcedOnSite", $value, true);
} | @var array | setRestrictedAccessControlGroupsEnforcedOnSite | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getIsRestrictContentOrgWideSearchPolicyEnforcedOnSite()
{
return $this->getProperty("IsRestrictContentOrgWideSearchPolicyEnforcedOnSite");
} | @return bool | getIsRestrictContentOrgWideSearchPolicyEnforcedOnSite | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function setIsRestrictContentOrgWideSearchPolicyEnforcedOnSite($value)
{
return $this->setProperty("IsRestrictContentOrgWideSearchPolicyEnforcedOnSite", $value, true);
} | @var bool | setIsRestrictContentOrgWideSearchPolicyEnforcedOnSite | php | vgrem/phpSPO | src/SharePoint/Site.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/Site.php | MIT |
public function getServerTypeInfo()
{
return new ServerTypeInfo("SP", "View");
} | @return ServerTypeInfo | getServerTypeInfo | php | vgrem/phpSPO | src/SharePoint/ViewCreationInformation.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ViewCreationInformation.php | MIT |
public function getName()
{
if (!$this->isPropertyAvailable("Name")) {
return null;
}
return $this->getProperty("Name");
} | @return string | getName | php | vgrem/phpSPO | src/SharePoint/MountPointInfo.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/MountPointInfo.php | MIT |
public function setName($value)
{
$this->setProperty("Name", $value, true);
} | @var string | setName | php | vgrem/phpSPO | src/SharePoint/MountPointInfo.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/MountPointInfo.php | MIT |
public function getRedirectUrl()
{
if (!$this->isPropertyAvailable("RedirectUrl")) {
return null;
}
return $this->getProperty("RedirectUrl");
} | @return string | getRedirectUrl | php | vgrem/phpSPO | src/SharePoint/MountPointInfo.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/MountPointInfo.php | MIT |
public function setRedirectUrl($value)
{
$this->setProperty("RedirectUrl", $value, true);
} | @var string | setRedirectUrl | php | vgrem/phpSPO | src/SharePoint/MountPointInfo.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/MountPointInfo.php | MIT |
public function getLastModified()
{
if (!$this->isPropertyAvailable("LastModified")) {
return null;
}
return $this->getProperty("LastModified");
} | @return string | getLastModified | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function setLastModified($value)
{
$this->setProperty("LastModified", $value, true);
} | @var string | setLastModified | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function getTotalFileCount()
{
if (!$this->isPropertyAvailable("TotalFileCount")) {
return null;
}
return $this->getProperty("TotalFileCount");
} | @return integer | getTotalFileCount | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function setTotalFileCount($value)
{
$this->setProperty("TotalFileCount", $value, true);
} | @var integer | setTotalFileCount | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function getTotalFileStreamSize()
{
if (!$this->isPropertyAvailable("TotalFileStreamSize")) {
return null;
}
return $this->getProperty("TotalFileStreamSize");
} | @return integer | getTotalFileStreamSize | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function setTotalFileStreamSize($value)
{
$this->setProperty("TotalFileStreamSize", $value, true);
} | @var integer | setTotalFileStreamSize | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function getTotalSize()
{
if (!$this->isPropertyAvailable("TotalSize")) {
return null;
}
return $this->getProperty("TotalSize");
} | @return integer | getTotalSize | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function setTotalSize($value)
{
$this->setProperty("TotalSize", $value, true);
} | @var integer | setTotalSize | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function getAdditionalFileStreamSize()
{
return $this->getProperty("AdditionalFileStreamSize");
} | @return integer | getAdditionalFileStreamSize | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function setAdditionalFileStreamSize($value)
{
return $this->setProperty("AdditionalFileStreamSize", $value, true);
} | @var integer | setAdditionalFileStreamSize | php | vgrem/phpSPO | src/SharePoint/StorageMetrics.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/StorageMetrics.php | MIT |
public function getFillInChoice()
{
if (!$this->isPropertyAvailable("FillInChoice")) {
return null;
}
return $this->getProperty("FillInChoice");
} | Specifies
whether the field (2) can accept
values other than those specified in Microsoft.Sharepoint.Client.FieldMultiChoice.Choices,
as specified in section 3.2.5.51.1.1.2.
@return bool | getFillInChoice | php | vgrem/phpSPO | src/SharePoint/FieldMultiChoice.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldMultiChoice.php | MIT |
public function setFillInChoice($value)
{
$this->setProperty("FillInChoice", $value, true);
} | Specifies
whether the field (2) can accept
values other than those specified in Microsoft.Sharepoint.Client.FieldMultiChoice.Choices,
as specified in section 3.2.5.51.1.1.2.
@var bool | setFillInChoice | php | vgrem/phpSPO | src/SharePoint/FieldMultiChoice.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldMultiChoice.php | MIT |
public function getMappings()
{
if (!$this->isPropertyAvailable("Mappings")) {
return null;
}
return $this->getProperty("Mappings");
} | Specifies
the internal values corresponding to Choices. It MUST be
NULL or an XML fragment that
conforms to MAPPINGDEFINITION, as specified in [MS-WSSFO3]
section 2.2.7.3.13.
@return string | getMappings | php | vgrem/phpSPO | src/SharePoint/FieldMultiChoice.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldMultiChoice.php | MIT |
public function setMappings($value)
{
$this->setProperty("Mappings", $value, true);
} | Specifies
the internal values corresponding to Choices. It MUST be
NULL or an XML fragment that
conforms to MAPPINGDEFINITION, as specified in [MS-WSSFO3]
section 2.2.7.3.13.
@var string | setMappings | php | vgrem/phpSPO | src/SharePoint/FieldMultiChoice.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldMultiChoice.php | MIT |
public function getChoices()
{
if (!$this->isPropertyAvailable("Choices")) {
return null;
}
return $this->getProperty("Choices");
} | Accessibility: Read/WriteSpecifies
values that are available for selection in the field (2).
@return array | getChoices | php | vgrem/phpSPO | src/SharePoint/FieldMultiChoice.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldMultiChoice.php | MIT |
public function setChoices($value)
{
$this->setProperty("Choices", $value, true);
} | Accessibility: Read/WriteSpecifies
values that are available for selection in the field (2).
@var array | setChoices | php | vgrem/phpSPO | src/SharePoint/FieldMultiChoice.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldMultiChoice.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.