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 getTime()
{
return $this->getProperty("Time");
} | @return string | getTime | php | vgrem/phpSPO | src/SharePoint/FileVersionEvent.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersionEvent.php | MIT |
public function setTime($value)
{
$this->setProperty("Time", $value, true);
} | @var string | setTime | php | vgrem/phpSPO | src/SharePoint/FileVersionEvent.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersionEvent.php | MIT |
public function getAppliedActionsText()
{
if (!$this->isPropertyAvailable("AppliedActionsText")) {
return null;
}
return $this->getProperty("AppliedActionsText");
} | @return string | getAppliedActionsText | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function setAppliedActionsText($value)
{
$this->setProperty("AppliedActionsText", $value, true);
} | @var string | setAppliedActionsText | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function getComplianceUrl()
{
if (!$this->isPropertyAvailable("ComplianceUrl")) {
return null;
}
return $this->getProperty("ComplianceUrl");
} | @return string | getComplianceUrl | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function setComplianceUrl($value)
{
$this->setProperty("ComplianceUrl", $value, true);
} | @var string | setComplianceUrl | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function getGeneralText()
{
if (!$this->isPropertyAvailable("GeneralText")) {
return null;
}
return $this->getProperty("GeneralText");
} | @return string | getGeneralText | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function setGeneralText($value)
{
$this->setProperty("GeneralText", $value, true);
} | @var string | setGeneralText | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function getLastProcessedTime()
{
if (!$this->isPropertyAvailable("LastProcessedTime")) {
return null;
}
return $this->getProperty("LastProcessedTime");
} | @return string | getLastProcessedTime | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function setLastProcessedTime($value)
{
$this->setProperty("LastProcessedTime", $value, true);
} | @var string | setLastProcessedTime | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function getMatchedConditionDescriptions()
{
if (!$this->isPropertyAvailable("MatchedConditionDescriptions")) {
return null;
}
return $this->getProperty("MatchedConditionDescriptions");
} | @return array | getMatchedConditionDescriptions | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function setMatchedConditionDescriptions($value)
{
$this->setProperty("MatchedConditionDescriptions", $value, true);
} | @var array | setMatchedConditionDescriptions | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function getOverrideOptions()
{
if (!$this->isPropertyAvailable("OverrideOptions")) {
return null;
}
return $this->getProperty("OverrideOptions");
} | @return integer | getOverrideOptions | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function setOverrideOptions($value)
{
$this->setProperty("OverrideOptions", $value, true);
} | @var integer | setOverrideOptions | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function getTwoLetterISOLanguageName()
{
if (!$this->isPropertyAvailable("TwoLetterISOLanguageName")) {
return null;
}
return $this->getProperty("TwoLetterISOLanguageName");
} | @return string | getTwoLetterISOLanguageName | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function setTwoLetterISOLanguageName($value)
{
$this->setProperty("TwoLetterISOLanguageName", $value, true);
} | @var string | setTwoLetterISOLanguageName | php | vgrem/phpSPO | src/SharePoint/DlpPolicyTip.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/DlpPolicyTip.php | MIT |
public function getSite()
{
if (!$this->isPropertyAvailable("Site")) {
$this->setProperty("Site", new Site($this->getContext(),
new ResourcePath("Site", $this->getResourcePath())));
}
return $this->getProperty("Site");
} | @return Site | getSite | php | vgrem/phpSPO | src/SharePoint/RequestContext.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/RequestContext.php | MIT |
public function getWeb()
{
if (!$this->isPropertyAvailable("Web")) {
$this->setProperty("Web", new Web($this->getContext(),
new ResourcePath("Web", $this->getResourcePath())));
}
return $this->getProperty("Web");
} | @return Web | getWeb | php | vgrem/phpSPO | src/SharePoint/RequestContext.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/RequestContext.php | MIT |
public function getCurrent()
{
if (!$this->isPropertyAvailable("Current")) {
$this->setProperty("Current", new RequestContext($this->getContext(),
new ResourcePath("Current", $this->getResourcePath())));
}
return $this->getProperty("Current");
} | @return RequestContext | getCurrent | php | vgrem/phpSPO | src/SharePoint/RequestContext.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/RequestContext.php | MIT |
public function getList()
{
if (!$this->isPropertyAvailable("List")) {
$this->setProperty("List", new SPList($this->getContext(),
new ResourcePath("List", $this->getResourcePath())));
}
return $this->getProperty("List");
} | Returns
the list that is associated with the Windows SharePoint Services context.
@return SPList | getList | php | vgrem/phpSPO | src/SharePoint/RequestContext.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/RequestContext.php | MIT |
public function getAllowPrint()
{
return $this->getProperty("AllowPrint");
} | @return bool | getAllowPrint | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setAllowPrint($value)
{
$this->setProperty("AllowPrint", $value, true);
} | @var bool | setAllowPrint | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getAllowScript()
{
return $this->getProperty("AllowScript");
} | @return bool | getAllowScript | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setAllowScript($value)
{
$this->setProperty("AllowScript", $value, true);
} | @var bool | setAllowScript | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getAllowWriteCopy()
{
return $this->getProperty("AllowWriteCopy");
} | @return bool | getAllowWriteCopy | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setAllowWriteCopy($value)
{
$this->setProperty("AllowWriteCopy", $value, true);
} | @var bool | setAllowWriteCopy | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getDisableDocumentBrowserView()
{
return $this->getProperty("DisableDocumentBrowserView");
} | @return bool | getDisableDocumentBrowserView | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setDisableDocumentBrowserView($value)
{
$this->setProperty("DisableDocumentBrowserView", $value, true);
} | @var bool | setDisableDocumentBrowserView | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getDocumentAccessExpireDays()
{
return $this->getProperty("DocumentAccessExpireDays");
} | @return integer | getDocumentAccessExpireDays | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setDocumentAccessExpireDays($value)
{
$this->setProperty("DocumentAccessExpireDays", $value, true);
} | @var integer | setDocumentAccessExpireDays | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getDocumentLibraryProtectionExpireDate()
{
return $this->getProperty("DocumentLibraryProtectionExpireDate");
} | @return string | getDocumentLibraryProtectionExpireDate | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setDocumentLibraryProtectionExpireDate($value)
{
$this->setProperty("DocumentLibraryProtectionExpireDate", $value, true);
} | @var string | setDocumentLibraryProtectionExpireDate | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getEnableDocumentAccessExpire()
{
return $this->getProperty("EnableDocumentAccessExpire");
} | @return bool | getEnableDocumentAccessExpire | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setEnableDocumentAccessExpire($value)
{
$this->setProperty("EnableDocumentAccessExpire", $value, true);
} | @var bool | setEnableDocumentAccessExpire | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getEnableDocumentBrowserPublishingView()
{
return $this->getProperty("EnableDocumentBrowserPublishingView");
} | @return bool | getEnableDocumentBrowserPublishingView | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setEnableDocumentBrowserPublishingView($value)
{
$this->setProperty("EnableDocumentBrowserPublishingView", $value, true);
} | @var bool | setEnableDocumentBrowserPublishingView | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getEnableGroupProtection()
{
return $this->getProperty("EnableGroupProtection");
} | @return bool | getEnableGroupProtection | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setEnableGroupProtection($value)
{
$this->setProperty("EnableGroupProtection", $value, true);
} | @var bool | setEnableGroupProtection | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getEnableLicenseCacheExpire()
{
return $this->getProperty("EnableLicenseCacheExpire");
} | @return bool | getEnableLicenseCacheExpire | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setEnableLicenseCacheExpire($value)
{
$this->setProperty("EnableLicenseCacheExpire", $value, true);
} | @var bool | setEnableLicenseCacheExpire | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getGroupName()
{
return $this->getProperty("GroupName");
} | @return string | getGroupName | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setGroupName($value)
{
$this->setProperty("GroupName", $value, true);
} | @var string | setGroupName | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getIrmEnabled()
{
return $this->getProperty("IrmEnabled");
} | @return bool | getIrmEnabled | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setIrmEnabled($value)
{
$this->setProperty("IrmEnabled", $value, true);
} | @var bool | setIrmEnabled | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getLicenseCacheExpireDays()
{
return $this->getProperty("LicenseCacheExpireDays");
} | @return integer | getLicenseCacheExpireDays | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setLicenseCacheExpireDays($value)
{
$this->setProperty("LicenseCacheExpireDays", $value, true);
} | @var integer | setLicenseCacheExpireDays | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getPolicyDescription()
{
return $this->getProperty("PolicyDescription");
} | @return string | getPolicyDescription | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setPolicyDescription($value)
{
$this->setProperty("PolicyDescription", $value, true);
} | @var string | setPolicyDescription | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getPolicyTitle()
{
if (!$this->isPropertyAvailable("PolicyTitle")) {
return null;
}
return $this->getProperty("PolicyTitle");
} | @return string | getPolicyTitle | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setPolicyTitle($value)
{
$this->setProperty("PolicyTitle", $value, true);
} | @var string | setPolicyTitle | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getSettingSource()
{
return $this->getProperty("SettingSource");
} | @return integer | getSettingSource | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setSettingSource($value)
{
$this->setProperty("SettingSource", $value, true);
} | @var integer | setSettingSource | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getTemplateId()
{
return $this->getProperty("TemplateId");
} | @return string | getTemplateId | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function setTemplateId($value)
{
$this->setProperty("TemplateId", $value, true);
} | @var string | setTemplateId | php | vgrem/phpSPO | src/SharePoint/EffectiveInformationRightsManagementSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/EffectiveInformationRightsManagementSettings.php | MIT |
public function getSynchronizationData()
{
if (!$this->isPropertyAvailable("SynchronizationData")) {
return null;
}
return $this->getProperty("SynchronizationData");
} | @return string | getSynchronizationData | php | vgrem/phpSPO | src/SharePoint/VisualizationAppSynchronizationResult.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/VisualizationAppSynchronizationResult.php | MIT |
public function setSynchronizationData($value)
{
$this->setProperty("SynchronizationData", $value, true);
} | @var string | setSynchronizationData | php | vgrem/phpSPO | src/SharePoint/VisualizationAppSynchronizationResult.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/VisualizationAppSynchronizationResult.php | MIT |
public function getSynchronizationStatus()
{
if (!$this->isPropertyAvailable("SynchronizationStatus")) {
return null;
}
return $this->getProperty("SynchronizationStatus");
} | @return integer | getSynchronizationStatus | php | vgrem/phpSPO | src/SharePoint/VisualizationAppSynchronizationResult.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/VisualizationAppSynchronizationResult.php | MIT |
public function setSynchronizationStatus($value)
{
$this->setProperty("SynchronizationStatus", $value, true);
} | @var integer | setSynchronizationStatus | php | vgrem/phpSPO | src/SharePoint/VisualizationAppSynchronizationResult.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/VisualizationAppSynchronizationResult.php | MIT |
public function getAppMappedViews()
{
if (!$this->isPropertyAvailable("AppMappedViews")) {
$this->setProperty("AppMappedViews", new ViewCollection($this->getContext(),
new ResourcePath("AppMappedViews", $this->getResourcePath())));
}
return $this->getProperty("AppMappedViews");
} | @return ViewCollection | getAppMappedViews | php | vgrem/phpSPO | src/SharePoint/VisualizationAppSynchronizationResult.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/VisualizationAppSynchronizationResult.php | MIT |
public function getAssetId()
{
if (!$this->isPropertyAvailable("AssetId")) {
return null;
}
return $this->getProperty("AssetId");
} | @return string | getAssetId | php | vgrem/phpSPO | src/SharePoint/App.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/App.php | MIT |
public function setAssetId($value)
{
$this->setProperty("AssetId", $value, true);
} | @var string | setAssetId | php | vgrem/phpSPO | src/SharePoint/App.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/App.php | MIT |
public function getContentMarket()
{
if (!$this->isPropertyAvailable("ContentMarket")) {
return null;
}
return $this->getProperty("ContentMarket");
} | @return string | getContentMarket | php | vgrem/phpSPO | src/SharePoint/App.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/App.php | MIT |
public function setContentMarket($value)
{
$this->setProperty("ContentMarket", $value, true);
} | @var string | setContentMarket | php | vgrem/phpSPO | src/SharePoint/App.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/App.php | MIT |
public function getVersionString()
{
if (!$this->isPropertyAvailable("VersionString")) {
return null;
}
return $this->getProperty("VersionString");
} | @return string | getVersionString | php | vgrem/phpSPO | src/SharePoint/App.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/App.php | MIT |
public function setVersionString($value)
{
$this->setProperty("VersionString", $value, true);
} | @var string | setVersionString | php | vgrem/phpSPO | src/SharePoint/App.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/App.php | MIT |
public function getId()
{
if (!$this->isPropertyAvailable("Id")) {
return null;
}
return $this->getProperty("Id");
} | @return string | getId | php | vgrem/phpSPO | src/SharePoint/TenantAppInstance.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantAppInstance.php | MIT |
public function setId($value)
{
$this->setProperty("Id", $value, true);
} | @var string | setId | php | vgrem/phpSPO | src/SharePoint/TenantAppInstance.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantAppInstance.php | MIT |
public function getSiteId()
{
if (!$this->isPropertyAvailable("SiteId")) {
return null;
}
return $this->getProperty("SiteId");
} | @return string | getSiteId | php | vgrem/phpSPO | src/SharePoint/TenantAppInstance.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantAppInstance.php | MIT |
public function setSiteId($value)
{
$this->setProperty("SiteId", $value, true);
} | @var string | setSiteId | php | vgrem/phpSPO | src/SharePoint/TenantAppInstance.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantAppInstance.php | MIT |
public function getWebId()
{
if (!$this->isPropertyAvailable("WebId")) {
return null;
}
return $this->getProperty("WebId");
} | @return string | getWebId | php | vgrem/phpSPO | src/SharePoint/TenantAppInstance.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantAppInstance.php | MIT |
public function setWebId($value)
{
$this->setProperty("WebId", $value, true);
} | @var string | setWebId | php | vgrem/phpSPO | src/SharePoint/TenantAppInstance.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantAppInstance.php | MIT |
public function getServerTypeInfo()
{
return new ServerTypeInfo("SP", "Group");
} | @return ServerTypeInfo | getServerTypeInfo | php | vgrem/phpSPO | src/SharePoint/GroupCreationInformation.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/GroupCreationInformation.php | MIT |
public function getGridEndNumber()
{
if (!$this->isPropertyAvailable("GridEndNumber")) {
return null;
}
return $this->getProperty("GridEndNumber");
} | @return integer | getGridEndNumber | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function setGridEndNumber($value)
{
$this->setProperty("GridEndNumber", $value, true);
} | @var integer | setGridEndNumber | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function getGridNAOptionText()
{
if (!$this->isPropertyAvailable("GridNAOptionText")) {
return null;
}
return $this->getProperty("GridNAOptionText");
} | @return string | getGridNAOptionText | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function setGridNAOptionText($value)
{
$this->setProperty("GridNAOptionText", $value, true);
} | @var string | setGridNAOptionText | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function getGridStartNumber()
{
if (!$this->isPropertyAvailable("GridStartNumber")) {
return null;
}
return $this->getProperty("GridStartNumber");
} | @return integer | getGridStartNumber | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function setGridStartNumber($value)
{
$this->setProperty("GridStartNumber", $value, true);
} | @var integer | setGridStartNumber | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function getGridTextRangeAverage()
{
if (!$this->isPropertyAvailable("GridTextRangeAverage")) {
return null;
}
return $this->getProperty("GridTextRangeAverage");
} | @return string | getGridTextRangeAverage | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function setGridTextRangeAverage($value)
{
$this->setProperty("GridTextRangeAverage", $value, true);
} | @var string | setGridTextRangeAverage | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function getGridTextRangeHigh()
{
if (!$this->isPropertyAvailable("GridTextRangeHigh")) {
return null;
}
return $this->getProperty("GridTextRangeHigh");
} | @return string | getGridTextRangeHigh | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function setGridTextRangeHigh($value)
{
$this->setProperty("GridTextRangeHigh", $value, true);
} | @var string | setGridTextRangeHigh | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function getGridTextRangeLow()
{
if (!$this->isPropertyAvailable("GridTextRangeLow")) {
return null;
}
return $this->getProperty("GridTextRangeLow");
} | @return string | getGridTextRangeLow | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function setGridTextRangeLow($value)
{
$this->setProperty("GridTextRangeLow", $value, true);
} | @var string | setGridTextRangeLow | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function getRangeCount()
{
if (!$this->isPropertyAvailable("RangeCount")) {
return null;
}
return $this->getProperty("RangeCount");
} | @return integer | getRangeCount | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function setRangeCount($value)
{
$this->setProperty("RangeCount", $value, true);
} | @var integer | setRangeCount | php | vgrem/phpSPO | src/SharePoint/FieldRatingScale.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldRatingScale.php | MIT |
public function getCheckInComment()
{
if (!$this->isPropertyAvailable("CheckInComment")) {
return null;
}
return $this->getProperty("CheckInComment");
} | Specifies
the check-in comment.It MUST
NOT be NULL. Its length MUST be equal to or less than 1023.
@return string | getCheckInComment | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function setCheckInComment($value)
{
$this->setProperty("CheckInComment", $value, true);
} | Specifies
the check-in comment.It MUST
NOT be NULL. Its length MUST be equal to or less than 1023.
@var string | setCheckInComment | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function getCreated()
{
if (!$this->isPropertyAvailable("Created")) {
return null;
}
return $this->getProperty("Created");
} | Specifies
the creation date and time for the file version.
@return string | getCreated | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function setCreated($value)
{
$this->setProperty("Created", $value, true);
} | Specifies
the creation date and time for the file version.
@var string | setCreated | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function getID()
{
if (!$this->isPropertyAvailable("ID")) {
return null;
}
return $this->getProperty("ID");
} | Gets the
internal identifier for the file version.
@return integer | getID | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function setID($value)
{
$this->setProperty("ID", $value, true);
} | Gets the
internal identifier for the file version.
@var integer | setID | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function getIsCurrentVersion()
{
if (!$this->isPropertyAvailable("IsCurrentVersion")) {
return null;
}
return $this->getProperty("IsCurrentVersion");
} | Specifies
whether the fileversion
is the current version.
@return bool | getIsCurrentVersion | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function setIsCurrentVersion($value)
{
$this->setProperty("IsCurrentVersion", $value, true);
} | Specifies
whether the fileversion
is the current version.
@var bool | setIsCurrentVersion | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function getLength()
{
if (!$this->isPropertyAvailable("Length")) {
return null;
}
return $this->getProperty("Length");
} | Gets the
length (in bytes) of the file version.
@return integer | getLength | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function setLength($value)
{
$this->setProperty("Length", $value, true);
} | Gets the
length (in bytes) of the file version.
@var integer | setLength | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function getSize()
{
if (!$this->isPropertyAvailable("Size")) {
return null;
}
return $this->getProperty("Size");
} | Gets the
size of the file version in bytes.Obsolete.
Use Length (section 3.2.5.70.1.1.8)
instead. This will throw an InvalidOperationException for versions
larger than 2 gigabytes. Use Length instead.
@return integer | getSize | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function setSize($value)
{
$this->setProperty("Size", $value, true);
} | Gets the
size of the file version in bytes.Obsolete.
Use Length (section 3.2.5.70.1.1.8)
instead. This will throw an InvalidOperationException for versions
larger than 2 gigabytes. Use Length instead.
@var integer | setSize | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function getUrl()
{
if (!$this->isPropertyAvailable("Url")) {
return null;
}
return $this->getProperty("Url");
} | Specifies
the relative URL of the file version based on the URL for the site (2)
or subsite.It MUST
NOT be empty. It MUST be a URL of relative form.
@return string | getUrl | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
public function setUrl($value)
{
$this->setProperty("Url", $value, true);
} | Specifies
the relative URL of the file version based on the URL for the site (2)
or subsite.It MUST
NOT be empty. It MUST be a URL of relative form.
@var string | setUrl | php | vgrem/phpSPO | src/SharePoint/FileVersion.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FileVersion.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.