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 setVersionOfUserCustomAction($value)
{
$this->setProperty("VersionOfUserCustomAction", $value, true);
} | Specifies
an implementation-specific version identifier. It MUST
NOT be NULL.
@var string | setVersionOfUserCustomAction | php | vgrem/phpSPO | src/SharePoint/UserCustomAction.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/UserCustomAction.php | MIT |
public function getDescriptionResource()
{
return $this->getProperty("DescriptionResource",
new UserResource($this->getContext(),
new ResourcePath("DescriptionResource", $this->getResourcePath())));
} | @return UserResource | getDescriptionResource | php | vgrem/phpSPO | src/SharePoint/UserCustomAction.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/UserCustomAction.php | MIT |
public function getTitleResource()
{
return $this->getProperty("TitleResource",
new UserResource($this->getContext(),new ResourcePath("TitleResource", $this->getResourcePath())));
} | @return UserResource | getTitleResource | php | vgrem/phpSPO | src/SharePoint/UserCustomAction.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/UserCustomAction.php | MIT |
public function getCorporateCatalogUrl()
{
if (!$this->isPropertyAvailable("CorporateCatalogUrl")) {
return null;
}
return $this->getProperty("CorporateCatalogUrl");
} | @return string | getCorporateCatalogUrl | php | vgrem/phpSPO | src/SharePoint/TenantSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantSettings.php | MIT |
public function setCorporateCatalogUrl($value)
{
$this->setProperty("CorporateCatalogUrl", $value, true);
} | @var string | setCorporateCatalogUrl | php | vgrem/phpSPO | src/SharePoint/TenantSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantSettings.php | MIT |
public static function getCurrent(ClientContext $context)
{
$returnType = new TenantSettings($context);
$qry = new InvokePostMethodQuery($returnType, "Current", null, null,
null);
$qry->IsStatic = true;
$context->addQueryAndResultObject($qry, $returnType);
return $returnType;
} | @return TenantSettings | getCurrent | php | vgrem/phpSPO | src/SharePoint/TenantSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/TenantSettings.php | MIT |
public function getAttachmentFiles()
{
return $this->getProperty("AttachmentFiles",
new AttachmentCollection($this->getContext(),
new ResourcePath("AttachmentFiles", $this->getResourcePath())));
} | @return AttachmentCollection | getAttachmentFiles | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getParentList()
{
return $this->getProperty("ParentList",
new SPList($this->getContext(),new ResourcePath("parentlist", $this->getResourcePath())));
} | Gets the parent list that contains the list item.
@return SPList | getParentList | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getFolder()
{
return $this->getProperty("Folder",
new Folder($this->getContext(),new ResourcePath("Folder", $this->getResourcePath())));
} | Gets the associated Folder resource.
@return Folder | getFolder | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getFile()
{
return $this->getProperty("File",
new File($this->getContext(),new ResourcePath("File", $this->getResourcePath())));
} | Gets the associated File resource.
@return File | getFile | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getCommentsDisabled()
{
return $this->getProperty("CommentsDisabled");
} | Indicates
whether comments for this item are disabled or not.
@return bool | getCommentsDisabled | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setCommentsDisabled($value)
{
return $this->setProperty("CommentsDisabled", $value, true);
} | Indicates
whether comments for this item are disabled or not.
@return self
@var bool | setCommentsDisabled | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getCommentsDisabledScope()
{
return $this->getProperty("CommentsDisabledScope");
} | Indicates
at what scope comments are disabled.
@return integer | getCommentsDisabledScope | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setCommentsDisabledScope($value)
{
$this->setProperty("CommentsDisabledScope", $value, true);
} | Indicates
at what scope comments are disabled.
@var integer | setCommentsDisabledScope | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getComplianceInfo()
{
return $this->getProperty("ComplianceInfo", new ListItemComplianceInfo());
} | @return ListItemComplianceInfo | getComplianceInfo | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setComplianceInfo($value)
{
$this->setProperty("ComplianceInfo", $value, true);
} | @var ListItemComplianceInfo | setComplianceInfo | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getDisplayName()
{
return $this->getProperty("DisplayName");
} | Specifies
the display
name of the list item. It MUST
NOT be NULL. It MUST NOT be empty.
@return string | getDisplayName | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | Specifies
the display
name of the list item. It MUST
NOT be NULL. It MUST NOT be empty.
@var string | setDisplayName | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getEffectiveBasePermissions()
{
return $this->getProperty("EffectiveBasePermissions", new BasePermissions());
} | Specifies
the permissions
on the list item that are
assigned to the current user.It MUST
NOT be NULL.
@return BasePermissions | getEffectiveBasePermissions | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setEffectiveBasePermissions($value)
{
$this->setProperty("EffectiveBasePermissions", $value, true);
} | Specifies
the permissions
on the list item that are
assigned to the current user.It MUST
NOT be NULL.
@var BasePermissions | setEffectiveBasePermissions | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getEffectiveBasePermissionsForUI()
{
return $this->getProperty("EffectiveBasePermissionsForUI", new BasePermissions());
} | Specifies
the effective base permissions for the current user, as they SHOULD be
displayed in the user interface (UI).<61> If the
list is not in read-only UI mode, the value of EffectiveBasePermissionsForUI
MUST be the same as the value of EffectiveBasePermissions (section 3.2.5.87.1.1.2).
If the list is in read-only UI mode, the value of EffectiveBasePermissionsForUI
MUST be a subset of the value of EffectiveBasePermissions.It MUST
NOT be NULL.
@return BasePermissions | getEffectiveBasePermissionsForUI | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setEffectiveBasePermissionsForUI($value)
{
$this->setProperty("EffectiveBasePermissionsForUI", $value, true);
} | Specifies
the effective base permissions for the current user, as they SHOULD be
displayed in the user interface (UI).<61> If the
list is not in read-only UI mode, the value of EffectiveBasePermissionsForUI
MUST be the same as the value of EffectiveBasePermissions (section 3.2.5.87.1.1.2).
If the list is in read-only UI mode, the value of EffectiveBasePermissionsForUI
MUST be a subset of the value of EffectiveBasePermissions.It MUST
NOT be NULL.
@var BasePermissions | setEffectiveBasePermissionsForUI | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getFileSystemObjectType()
{
return $this->getProperty("FileSystemObjectType");
} | Specifies
whether the list item is a file
or a list
folder. It MUST be
one of the following values: File or Folder.
@return integer | getFileSystemObjectType | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setFileSystemObjectType($value)
{
$this->setProperty("FileSystemObjectType", $value, true);
} | Specifies
whether the list item is a file
or a list
folder. It MUST be
one of the following values: File or Folder.
@var integer | setFileSystemObjectType | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getIconOverlay()
{
return $this->getProperty("IconOverlay");
} | This is an
overlay icon for the item. If the parent list of the item does not already have
the IconOverlay field and The user setting the property does not have rights to
add the field to the list then the property will not be set for the item.
@return string | getIconOverlay | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setIconOverlay($value)
{
$this->setProperty("IconOverlay", $value, true);
} | This is an
overlay icon for the item. If the parent list of the item does not already have
the IconOverlay field and The user setting the property does not have rights to
add the field to the list then the property will not be set for the item.
@var string | setIconOverlay | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getId()
{
return $this->getProperty("Id");
} | Specifies
the list
item identifier. It MUST be 0 for a list item in an external
list. It MUST be -1 for list items that have not yet been added to a
list.
@return integer | getId | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setId($value)
{
$this->setProperty("Id", $value, true);
} | Specifies
the list
item identifier. It MUST be 0 for a list item in an external
list. It MUST be -1 for list items that have not yet been added to a
list.
@var integer | setId | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getServerRedirectedEmbedUri()
{
return $this->getProperty("ServerRedirectedEmbedUri");
} | Returns
the path for previewing a document in the browser, often in an interactive way,
if that feature exists.
@return string | getServerRedirectedEmbedUri | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setServerRedirectedEmbedUri($value)
{
$this->setProperty("ServerRedirectedEmbedUri", $value, true);
} | Returns
the path for previewing a document in the browser, often in an interactive way,
if that feature exists.
@var string | setServerRedirectedEmbedUri | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getServerRedirectedEmbedUrl()
{
return $this->getProperty("ServerRedirectedEmbedUrl");
} | Returns
the URL for previewing a document in the browser, often in an interactive way,
if that feature exists. This is currently used in the hovering panel of search
results and document library.
@return string | getServerRedirectedEmbedUrl | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setServerRedirectedEmbedUrl($value)
{
$this->setProperty("ServerRedirectedEmbedUrl", $value, true);
} | Returns
the URL for previewing a document in the browser, often in an interactive way,
if that feature exists. This is currently used in the hovering panel of search
results and document library.
@var string | setServerRedirectedEmbedUrl | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getClient_Title()
{
return $this->getProperty("Client_Title");
} | Gets the
title of the item.
@return string | getClient_Title | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function setClient_Title($value)
{
$this->setProperty("Client_Title", $value, true);
} | Gets the
title of the item.
@var string | setClient_Title | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getContentType()
{
return $this->getProperty("ContentType",
new ContentType($this->getContext(),new ResourcePath("ContentType", $this->getResourcePath())));
} | Specifies
the content
type of the list item. It MUST
be NULL if the list item has no content type.
@return ContentType | getContentType | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getGetDlpPolicyTip()
{
return $this->getProperty("GetDlpPolicyTip",
new DlpPolicyTip($this->getContext(),new ResourcePath("GetDlpPolicyTip", $this->getResourcePath())));
} | @return DlpPolicyTip | getGetDlpPolicyTip | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getFieldValuesAsHtml()
{
return $this->getProperty("FieldValuesAsHtml",
new FieldStringValues($this->getContext(),
new ResourcePath("FieldValuesAsHtml", $this->getResourcePath())));
} | @return FieldStringValues | getFieldValuesAsHtml | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getFieldValuesAsText()
{
return $this->getProperty("FieldValuesAsText",
new FieldStringValues($this->getContext(),
new ResourcePath("FieldValuesAsText", $this->getResourcePath())));
} | @return FieldStringValues | getFieldValuesAsText | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getFieldValuesForEdit()
{
return $this->getProperty("FieldValuesForEdit",
new FieldStringValues($this->getContext(),
new ResourcePath("FieldValuesForEdit", $this->getResourcePath())));
} | @return FieldStringValues | getFieldValuesForEdit | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getServerTypeInfo()
{
return ServerTypeInfo::fromFullName($this->typeName);
} | @return ServerTypeInfo | getServerTypeInfo | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function update()
{
$this->ensureTypeName($this->getParentList());
return parent::update();
} | Sets field values and creates a new version if versioning is enabled for the list
@return ListItem | update | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function systemUpdate(){
$qry = new InvokePostMethodQuery($this, "SystemUpdate");
$this->getContext()->addQuery($qry);
return $this;
} | Updates the database with changes made to the list item.
@return $this | systemUpdate | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function updateOverwriteVersion(){
$qry = new InvokePostMethodQuery($this, "UpdateOverwriteVersion");
$this->getContext()->addQuery($qry);
return $this;
} | Updates the item without creating another version of the item.
@return $this | updateOverwriteVersion | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function validateUpdateListItem($formValues,
$newDocumentUpdate=false,
$checkInComment=null,
$datesInUTC=false,
$numberInInvariantCulture=false)
{
$normalizedFormValues = array_map(function ($k, $v) {
return new ListItemFormUpdateValue($k, $v);
}, array_keys($formValues), array_values($formValues));
$payload = array(
"formValues" => $normalizedFormValues,
"bNewDocumentUpdate" => $newDocumentUpdate,
"checkInComment" => $checkInComment,
"datesInUTC" => $datesInUTC,
"numberInInvariantCulture" => $numberInInvariantCulture
);
$result = new ClientResult($this->getContext(),
new ClientValueCollection(ListItemFormUpdateValue::class));
$qry = new InvokePostMethodQuery($this, "ValidateUpdateListItem",
null, null, $payload);
$this->getContext()->addQueryAndResultObject($qry, $result);
return $result;
} | Validates and sets the values of the specified collection of fields (2) for the list item and,
if successfully validated, commits all changes. Returns the modified list of values
with updated exception information.
@param array $formValues Specifies a collection of field internal names and values for the given field (2).
@param bool $newDocumentUpdate
@param string|null $checkInComment
@param bool $datesInUTC
@return ClientResult | validateUpdateListItem | php | vgrem/phpSPO | src/SharePoint/ListItem.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListItem.php | MIT |
public function getFieldId()
{
return $this->getProperty("FieldId");
} | Identifies
the changed field (2).Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionThe field identifier
in the change fields (2) item of the change collection is NULL.
@return string | getFieldId | php | vgrem/phpSPO | src/SharePoint/ChangeField.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ChangeField.php | MIT |
public function setFieldId($value)
{
$this->setProperty("FieldId", $value, true);
} | Identifies
the changed field (2).Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionThe field identifier
in the change fields (2) item of the change collection is NULL.
@var string | setFieldId | php | vgrem/phpSPO | src/SharePoint/ChangeField.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ChangeField.php | MIT |
public function getWebId()
{
return $this->getProperty("WebId");
} | Identifies
the site
(2) that contains the changed field (2).Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionThe site identifier in
the change fields (2) item of the change collection is NULL.
@return string | getWebId | php | vgrem/phpSPO | src/SharePoint/ChangeField.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ChangeField.php | MIT |
public function setWebId($value)
{
$this->setProperty("WebId", $value, true);
} | Identifies
the site
(2) that contains the changed field (2).Exceptions:
Error CodeError Type NameCondition-1System.NotSupportedExceptionThe site identifier in
the change fields (2) item of the change collection is NULL.
@var string | setWebId | php | vgrem/phpSPO | src/SharePoint/ChangeField.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ChangeField.php | MIT |
public function getAccessRequestMode()
{
return $this->getProperty("AccessRequestMode");
} | Boolean
indicating whether the sharing context operates under the access request mode.
@return bool | getAccessRequestMode | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setAccessRequestMode($value)
{
$this->setProperty("AccessRequestMode", $value, true);
} | Boolean
indicating whether the sharing context operates under the access request mode.
@var bool | setAccessRequestMode | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getBlockPeoplePickerAndSharing()
{
return $this->getProperty("BlockPeoplePickerAndSharing");
} | Boolean
indicating whether the current user can use the People Picker to do any
sharing.
@return bool | getBlockPeoplePickerAndSharing | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setBlockPeoplePickerAndSharing($value)
{
$this->setProperty("BlockPeoplePickerAndSharing", $value, true);
} | Boolean
indicating whether the current user can use the People Picker to do any
sharing.
@var bool | setBlockPeoplePickerAndSharing | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserManageOrganizationReadonlyLink()
{
return $this->getProperty("CanCurrentUserManageOrganizationReadonlyLink");
} | Boolean
indicating whether the current user can create or disable an organization View
link.
@return bool | getCanCurrentUserManageOrganizationReadonlyLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserManageOrganizationReadonlyLink($value)
{
$this->setProperty("CanCurrentUserManageOrganizationReadonlyLink", $value, true);
} | Boolean
indicating whether the current user can create or disable an organization View
link.
@var bool | setCanCurrentUserManageOrganizationReadonlyLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserManageOrganizationReadWriteLink()
{
return $this->getProperty("CanCurrentUserManageOrganizationReadWriteLink");
} | Boolean
indicating whether the current user can create or disable an organization Edit
link.
@return bool | getCanCurrentUserManageOrganizationReadWriteLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserManageOrganizationReadWriteLink($value)
{
$this->setProperty("CanCurrentUserManageOrganizationReadWriteLink", $value, true);
} | Boolean
indicating whether the current user can create or disable an organization Edit
link.
@var bool | setCanCurrentUserManageOrganizationReadWriteLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserManageReadonlyLink()
{
return $this->getProperty("CanCurrentUserManageReadonlyLink");
} | Boolean
indicating whether the current user can create or disable an anonymous View
link.
@return bool | getCanCurrentUserManageReadonlyLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserManageReadonlyLink($value)
{
$this->setProperty("CanCurrentUserManageReadonlyLink", $value, true);
} | Boolean
indicating whether the current user can create or disable an anonymous View
link.
@var bool | setCanCurrentUserManageReadonlyLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserManageReadWriteLink()
{
return $this->getProperty("CanCurrentUserManageReadWriteLink");
} | Boolean
indicating whether the current user can create or disable an anonymous Edit
link.
@return bool | getCanCurrentUserManageReadWriteLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserManageReadWriteLink($value)
{
$this->setProperty("CanCurrentUserManageReadWriteLink", $value, true);
} | Boolean
indicating whether the current user can create or disable an anonymous Edit
link.
@var bool | setCanCurrentUserManageReadWriteLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserRetrieveOrganizationReadonlyLink()
{
return $this->getProperty("CanCurrentUserRetrieveOrganizationReadonlyLink");
} | Boolean
indicating whether the current user can retrieve an organization View link, if
one has already been created.If one has
not been created, the user cannot create one
@return bool | getCanCurrentUserRetrieveOrganizationReadonlyLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserRetrieveOrganizationReadonlyLink($value)
{
$this->setProperty("CanCurrentUserRetrieveOrganizationReadonlyLink", $value, true);
} | Boolean
indicating whether the current user can retrieve an organization View link, if
one has already been created.If one has
not been created, the user cannot create one
@var bool | setCanCurrentUserRetrieveOrganizationReadonlyLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserRetrieveOrganizationReadWriteLink()
{
return $this->getProperty("CanCurrentUserRetrieveOrganizationReadWriteLink");
} | Boolean
indicating whether the current user can retrieve an organization Edit link, if
one has already been created.If one has
not been created, the user cannot create one.
@return bool | getCanCurrentUserRetrieveOrganizationReadWriteLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserRetrieveOrganizationReadWriteLink($value)
{
$this->setProperty("CanCurrentUserRetrieveOrganizationReadWriteLink", $value, true);
} | Boolean
indicating whether the current user can retrieve an organization Edit link, if
one has already been created.If one has
not been created, the user cannot create one.
@var bool | setCanCurrentUserRetrieveOrganizationReadWriteLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserRetrieveReadonlyLink()
{
return $this->getProperty("CanCurrentUserRetrieveReadonlyLink");
} | Boolean
indicating whether the current user can retrieve an anonymous View link, if one
has already been created.If one has
not been created, the user cannot create one.
@return bool | getCanCurrentUserRetrieveReadonlyLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserRetrieveReadonlyLink($value)
{
$this->setProperty("CanCurrentUserRetrieveReadonlyLink", $value, true);
} | Boolean
indicating whether the current user can retrieve an anonymous View link, if one
has already been created.If one has
not been created, the user cannot create one.
@var bool | setCanCurrentUserRetrieveReadonlyLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserRetrieveReadWriteLink()
{
return $this->getProperty("CanCurrentUserRetrieveReadWriteLink");
} | Boolean
indicating whether the current user can retrieve an anonymous Edit link, if one
has already been created.If one has
not been created, the user cannot create one.
@return bool | getCanCurrentUserRetrieveReadWriteLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserRetrieveReadWriteLink($value)
{
$this->setProperty("CanCurrentUserRetrieveReadWriteLink", $value, true);
} | Boolean
indicating whether the current user can retrieve an anonymous Edit link, if one
has already been created.If one has
not been created, the user cannot create one.
@var bool | setCanCurrentUserRetrieveReadWriteLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserShareExternally()
{
return $this->getProperty("CanCurrentUserShareExternally");
} | Boolean
indicating whether the current user can share outside the tenancy, by inviting
external users.
@return bool | getCanCurrentUserShareExternally | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserShareExternally($value)
{
$this->setProperty("CanCurrentUserShareExternally", $value, true);
} | Boolean
indicating whether the current user can share outside the tenancy, by inviting
external users.
@var bool | setCanCurrentUserShareExternally | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanCurrentUserShareInternally()
{
return $this->getProperty("CanCurrentUserShareInternally");
} | Boolean
indicating whether the current user can only share within the tenancy
@return bool | getCanCurrentUserShareInternally | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanCurrentUserShareInternally($value)
{
$this->setProperty("CanCurrentUserShareInternally", $value, true);
} | Boolean
indicating whether the current user can only share within the tenancy
@var bool | setCanCurrentUserShareInternally | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanSendEmail()
{
return $this->getProperty("CanSendEmail");
} | Boolean
indicating whether email invitations can be sent.
@return bool | getCanSendEmail | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanSendEmail($value)
{
$this->setProperty("CanSendEmail", $value, true);
} | Boolean
indicating whether email invitations can be sent.
@var bool | setCanSendEmail | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanSendLink()
{
return $this->getProperty("CanSendLink");
} | Boolean
indicating whether the current user can make use of Share-By-Link.
@return bool | getCanSendLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanSendLink($value)
{
$this->setProperty("CanSendLink", $value, true);
} | Boolean
indicating whether the current user can make use of Share-By-Link.
@var bool | setCanSendLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getCanShareFolder()
{
return $this->getProperty("CanShareFolder");
} | Boolean
indicating whether the folder object can be shared.
@return bool | getCanShareFolder | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setCanShareFolder($value)
{
$this->setProperty("CanShareFolder", $value, true);
} | Boolean
indicating whether the folder object can be shared.
@var bool | setCanShareFolder | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getDefaultShareLinkPermission()
{
return $this->getProperty("DefaultShareLinkPermission");
} | Default tokenized
sharing link permission returned as Role.
@return integer | getDefaultShareLinkPermission | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setDefaultShareLinkPermission($value)
{
$this->setProperty("DefaultShareLinkPermission", $value, true);
} | Default tokenized
sharing link permission returned as Role.
@var integer | setDefaultShareLinkPermission | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getDefaultShareLinkType()
{
return $this->getProperty("DefaultShareLinkType");
} | Default tokenized
sharing link type returned as SharingLinkKind.
@return integer | getDefaultShareLinkType | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setDefaultShareLinkType($value)
{
$this->setProperty("DefaultShareLinkType", $value, true);
} | Default tokenized
sharing link type returned as SharingLinkKind.
@var integer | setDefaultShareLinkType | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getGroupsList()
{
return $this->getProperty("GroupsList");
} | A dictionary
object that lists the display name and the id of the SharePoint groups.
@return array | getGroupsList | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setGroupsList($value)
{
$this->setProperty("GroupsList", $value, true);
} | A dictionary
object that lists the display name and the id of the SharePoint groups.
@var array | setGroupsList | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getHasEditRole()
{
return $this->getProperty("HasEditRole");
} | Boolean
that indicates whether or not the site has the standard "Editor"
role.
@return bool | getHasEditRole | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setHasEditRole($value)
{
$this->setProperty("HasEditRole", $value, true);
} | Boolean
that indicates whether or not the site has the standard "Editor"
role.
@var bool | setHasEditRole | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getHasReadRole()
{
return $this->getProperty("HasReadRole");
} | Boolean
that indicates whether or not the site has the standard "Reader"
role.
@return bool | getHasReadRole | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setHasReadRole($value)
{
$this->setProperty("HasReadRole", $value, true);
} | Boolean
that indicates whether or not the site has the standard "Reader"
role.
@var bool | setHasReadRole | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getInheritingWebLink()
{
return $this->getProperty("InheritingWebLink");
} | The URL
of the site from which the shared object inherits permissions.
@return string | getInheritingWebLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setInheritingWebLink($value)
{
$this->setProperty("InheritingWebLink", $value, true);
} | The URL
of the site from which the shared object inherits permissions.
@var string | setInheritingWebLink | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getIsGuestUser()
{
return $this->getProperty("IsGuestUser");
} | Boolean
that indicates whether or not the current user is a guest user.
@return bool | getIsGuestUser | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setIsGuestUser($value)
{
$this->setProperty("IsGuestUser", $value, true);
} | Boolean
that indicates whether or not the current user is a guest user.
@var bool | setIsGuestUser | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getIsPictureLibrary()
{
return $this->getProperty("IsPictureLibrary");
} | Boolean
that indicates whether or not the object to share is a picture
library.
@return bool | getIsPictureLibrary | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setIsPictureLibrary($value)
{
$this->setProperty("IsPictureLibrary", $value, true);
} | Boolean
that indicates whether or not the object to share is a picture
library.
@var bool | setIsPictureLibrary | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getIsUserSiteAdmin()
{
return $this->getProperty("IsUserSiteAdmin");
} | Boolean
that indicates whether or not the current user is a site collection administrator.
@return bool | getIsUserSiteAdmin | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setIsUserSiteAdmin($value)
{
$this->setProperty("IsUserSiteAdmin", $value, true);
} | Boolean
that indicates whether or not the current user is a site collection administrator.
@var bool | setIsUserSiteAdmin | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getItemId()
{
return $this->getProperty("ItemId");
} | The list
item ID (if applicable).
@return string | getItemId | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setItemId($value)
{
$this->setProperty("ItemId", $value, true);
} | The list
item ID (if applicable).
@var string | setItemId | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function getItemName()
{
return $this->getProperty("ItemName");
} | The object
title.
@return string | getItemName | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
public function setItemName($value)
{
$this->setProperty("ItemName", $value, true);
} | The object
title.
@var string | setItemName | php | vgrem/phpSPO | src/SharePoint/ObjectSharingSettings.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingSettings.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.