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 getHasReviewPermission()
{
if (!$this->isPropertyAvailable("HasReviewPermission")) {
return null;
}
return $this->getProperty("HasReviewPermission");
} | @return bool | getHasReviewPermission | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setHasReviewPermission($value)
{
$this->setProperty("HasReviewPermission", $value, true);
} | @var bool | setHasReviewPermission | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getHasViewPermission()
{
if (!$this->isPropertyAvailable("HasViewPermission")) {
return null;
}
return $this->getProperty("HasViewPermission");
} | @return bool | getHasViewPermission | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setHasViewPermission($value)
{
$this->setProperty("HasViewPermission", $value, true);
} | @var bool | setHasViewPermission | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getId()
{
if (!$this->isPropertyAvailable("Id")) {
return null;
}
return $this->getProperty("Id");
} | @return integer | getId | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setId($value)
{
$this->setProperty("Id", $value, true);
} | @var integer | setId | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getIsDomainGroup()
{
if (!$this->isPropertyAvailable("IsDomainGroup")) {
return null;
}
return $this->getProperty("IsDomainGroup");
} | @return bool | getIsDomainGroup | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setIsDomainGroup($value)
{
$this->setProperty("IsDomainGroup", $value, true);
} | @var bool | setIsDomainGroup | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getIsExternalUser()
{
if (!$this->isPropertyAvailable("IsExternalUser")) {
return null;
}
return $this->getProperty("IsExternalUser");
} | @return bool | getIsExternalUser | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setIsExternalUser($value)
{
$this->setProperty("IsExternalUser", $value, true);
} | @var bool | setIsExternalUser | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getIsMemberOfGroup()
{
if (!$this->isPropertyAvailable("IsMemberOfGroup")) {
return null;
}
return $this->getProperty("IsMemberOfGroup");
} | @return bool | getIsMemberOfGroup | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setIsMemberOfGroup($value)
{
$this->setProperty("IsMemberOfGroup", $value, true);
} | @var bool | setIsMemberOfGroup | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getIsSiteAdmin()
{
if (!$this->isPropertyAvailable("IsSiteAdmin")) {
return null;
}
return $this->getProperty("IsSiteAdmin");
} | @return bool | getIsSiteAdmin | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setIsSiteAdmin($value)
{
$this->setProperty("IsSiteAdmin", $value, true);
} | @var bool | setIsSiteAdmin | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getJobTitle()
{
if (!$this->isPropertyAvailable("JobTitle")) {
return null;
}
return $this->getProperty("JobTitle");
} | @return string | getJobTitle | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setJobTitle($value)
{
$this->setProperty("JobTitle", $value, true);
} | @var string | setJobTitle | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getLoginName()
{
if (!$this->isPropertyAvailable("LoginName")) {
return null;
}
return $this->getProperty("LoginName");
} | @return string | getLoginName | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setLoginName($value)
{
$this->setProperty("LoginName", $value, true);
} | @var string | setLoginName | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getName()
{
if (!$this->isPropertyAvailable("Name")) {
return null;
}
return $this->getProperty("Name");
} | @return string | getName | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setName($value)
{
$this->setProperty("Name", $value, true);
} | @var string | setName | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getPicture()
{
if (!$this->isPropertyAvailable("Picture")) {
return null;
}
return $this->getProperty("Picture");
} | @return string | getPicture | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setPicture($value)
{
$this->setProperty("Picture", $value, true);
} | @var string | setPicture | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getSipAddress()
{
if (!$this->isPropertyAvailable("SipAddress")) {
return null;
}
return $this->getProperty("SipAddress");
} | @return string | getSipAddress | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function setSipAddress($value)
{
$this->setProperty("SipAddress", $value, true);
} | @var string | setSipAddress | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getPrincipal()
{
if (!$this->isPropertyAvailable("Principal")) {
$this->setProperty("Principal", new Principal($this->getContext(),
new ResourcePath("Principal", $this->getResourcePath())));
}
return $this->getProperty("Principal");
} | @return Principal | getPrincipal | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getUser()
{
if (!$this->isPropertyAvailable("User")) {
$this->setProperty("User", new User($this->getContext(),
new ResourcePath("User", $this->getResourcePath())));
}
return $this->getProperty("User");
} | @return User | getUser | php | vgrem/phpSPO | src/SharePoint/ObjectSharingInformationUser.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ObjectSharingInformationUser.php | MIT |
public function getServerTypeInfo()
{
return new ServerTypeInfo("SP", "List");
} | @return ServerTypeInfo | getServerTypeInfo | php | vgrem/phpSPO | src/SharePoint/ListCreationInformation.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListCreationInformation.php | MIT |
public function getDisplayName()
{
if (!$this->isPropertyAvailable("DisplayName")) {
return null;
}
return $this->getProperty("DisplayName");
} | @return string | getDisplayName | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function setDisplayName($value)
{
$this->setProperty("DisplayName", $value, true);
} | @var string | setDisplayName | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function getFieldInternalName()
{
if (!$this->isPropertyAvailable("FieldInternalName")) {
return null;
}
return $this->getProperty("FieldInternalName");
} | @return string | getFieldInternalName | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function setFieldInternalName($value)
{
$this->setProperty("FieldInternalName", $value, true);
} | @var string | setFieldInternalName | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function getHidden()
{
if (!$this->isPropertyAvailable("Hidden")) {
return null;
}
return $this->getProperty("Hidden");
} | @return bool | getHidden | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function setHidden($value)
{
$this->setProperty("Hidden", $value, true);
} | @var bool | setHidden | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function getId()
{
if (!$this->isPropertyAvailable("Id")) {
return null;
}
return $this->getProperty("Id");
} | @return string | getId | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function setId($value)
{
$this->setProperty("Id", $value, true);
} | @var string | setId | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function getName()
{
if (!$this->isPropertyAvailable("Name")) {
return null;
}
return $this->getProperty("Name");
} | @return string | getName | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function setName($value)
{
$this->setProperty("Name", $value, true);
} | @var string | setName | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function getReadOnly()
{
if (!$this->isPropertyAvailable("ReadOnly")) {
return null;
}
return $this->getProperty("ReadOnly");
} | @return bool | getReadOnly | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function setReadOnly($value)
{
$this->setProperty("ReadOnly", $value, true);
} | @var bool | setReadOnly | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function getRequired()
{
if (!$this->isPropertyAvailable("Required")) {
return null;
}
return $this->getProperty("Required");
} | @return bool | getRequired | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function setRequired($value)
{
$this->setProperty("Required", $value, true);
} | @var bool | setRequired | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function getShowInDisplayForm()
{
if (!$this->isPropertyAvailable("ShowInDisplayForm")) {
return null;
}
return $this->getProperty("ShowInDisplayForm");
} | @return bool | getShowInDisplayForm | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function setShowInDisplayForm($value)
{
$this->setProperty("ShowInDisplayForm", $value, true);
} | @var bool | setShowInDisplayForm | php | vgrem/phpSPO | src/SharePoint/FieldLink.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldLink.php | MIT |
public function getBloomFilterSize()
{
if (!$this->isPropertyAvailable("BloomFilterSize")) {
return null;
}
return $this->getProperty("BloomFilterSize");
} | @return integer | getBloomFilterSize | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function setBloomFilterSize($value)
{
$this->setProperty("BloomFilterSize", $value, true);
} | @var integer | setBloomFilterSize | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function getFalsePositiveRate()
{
if (!$this->isPropertyAvailable("FalsePositiveRate")) {
return null;
}
return $this->getProperty("FalsePositiveRate");
} | @return double | getFalsePositiveRate | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function setFalsePositiveRate($value)
{
$this->setProperty("FalsePositiveRate", $value, true);
} | @var double | setFalsePositiveRate | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function getHashedValueSet()
{
if (!$this->isPropertyAvailable("HashedValueSet")) {
return null;
}
return $this->getProperty("HashedValueSet");
} | @return array | getHashedValueSet | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function setHashedValueSet($value)
{
$this->setProperty("HashedValueSet", $value, true);
} | @var array | setHashedValueSet | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function getIndexMap()
{
if (!$this->isPropertyAvailable("IndexMap")) {
return null;
}
return $this->getProperty("IndexMap");
} | @return array | getIndexMap | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function setIndexMap($value)
{
$this->setProperty("IndexMap", $value, true);
} | @var array | setIndexMap | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function getItemProcessedCount()
{
if (!$this->isPropertyAvailable("ItemProcessedCount")) {
return null;
}
return $this->getProperty("ItemProcessedCount");
} | @return integer | getItemProcessedCount | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function setItemProcessedCount($value)
{
$this->setProperty("ItemProcessedCount", $value, true);
} | @var integer | setItemProcessedCount | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function getK()
{
if (!$this->isPropertyAvailable("K")) {
return null;
}
return $this->getProperty("K");
} | @return integer | getK | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function setK($value)
{
$this->setProperty("K", $value, true);
} | @var integer | setK | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function getLastListItemIdProcessed()
{
if (!$this->isPropertyAvailable("LastListItemIdProcessed")) {
return null;
}
return $this->getProperty("LastListItemIdProcessed");
} | @return integer | getLastListItemIdProcessed | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function setLastListItemIdProcessed($value)
{
$this->setProperty("LastListItemIdProcessed", $value, true);
} | @var integer | setLastListItemIdProcessed | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function getMaxItemCount()
{
if (!$this->isPropertyAvailable("MaxItemCount")) {
return null;
}
return $this->getProperty("MaxItemCount");
} | @return integer | getMaxItemCount | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function setMaxItemCount($value)
{
$this->setProperty("MaxItemCount", $value, true);
} | @var integer | setMaxItemCount | php | vgrem/phpSPO | src/SharePoint/ListBloomFilter.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/ListBloomFilter.php | MIT |
public function getCurrencyLocaleId()
{
if (!$this->isPropertyAvailable("CurrencyLocaleId")) {
return null;
}
return $this->getProperty("CurrencyLocaleId");
} | @return integer | getCurrencyLocaleId | php | vgrem/phpSPO | src/SharePoint/FieldCurrency.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldCurrency.php | MIT |
public function setCurrencyLocaleId($value)
{
$this->setProperty("CurrencyLocaleId", $value, true);
} | @var integer | setCurrencyLocaleId | php | vgrem/phpSPO | src/SharePoint/FieldCurrency.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/FieldCurrency.php | MIT |
public function getViewFields()
{
return $this->getProperty("ViewFields", new ViewFieldCollection($this->getContext(), new ResourcePath("ViewFields", $this->getResourcePath())));
} | Gets a value that specifies the collection of fields in the list view.
@return ViewFieldCollection | getViewFields | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function renderAsHtml()
{
$qry = new InvokeMethodQuery($this, "renderashtml");
$this->getContext()->addQuery($qry);
return $this;
} | Returns the list view as HTML.
@return View | renderAsHtml | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getAggregations()
{
return $this->getProperty("Aggregations");
} | Specifies fields
(2) and functions that define totals shown in a list view.It MUST be
NULL or an XML fragment that
conforms to the following XML schema:
<xs:sequence><xs:element name="FieldRef"
type="FieldRefDefinitionAggregation" minOccurs="0"
maxOccurs="unbounded" /></xs:sequence>
where FieldRefDefinitionAggregation is specified in [MS-WSSCAML]
section 2.3.2.2.
@return string | getAggregations | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setAggregations($value)
{
$this->setProperty("Aggregations", $value, true);
} | Specifies fields
(2) and functions that define totals shown in a list view.It MUST be
NULL or an XML fragment that
conforms to the following XML schema:
<xs:sequence><xs:element name="FieldRef"
type="FieldRefDefinitionAggregation" minOccurs="0"
maxOccurs="unbounded" /></xs:sequence>
where FieldRefDefinitionAggregation is specified in [MS-WSSCAML]
section 2.3.2.2.
@var string | setAggregations | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getAggregationsStatus()
{
return $this->getProperty("AggregationsStatus");
} | Specifies
whether totals are shown in the list view. It MUST be
NULL If Aggregations is NULL; otherwise it MUST be "On" or
"Off".
@return string | getAggregationsStatus | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setAggregationsStatus($value)
{
$this->setProperty("AggregationsStatus", $value, true);
} | Specifies
whether totals are shown in the list view. It MUST be
NULL If Aggregations is NULL; otherwise it MUST be "On" or
"Off".
@var string | setAggregationsStatus | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getBaseViewId()
{
return $this->getProperty("BaseViewId");
} | Specifies
the base
view identifier of the list view.It MUST be
an integer encoded as a string. Its value MUST be equal to or greater than 0.
Its value MUST be equal to or less than 255.
@return string | getBaseViewId | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setBaseViewId($value)
{
$this->setProperty("BaseViewId", $value, true);
} | Specifies
the base
view identifier of the list view.It MUST be
an integer encoded as a string. Its value MUST be equal to or greater than 0.
Its value MUST be equal to or less than 255.
@var string | setBaseViewId | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getColumnWidth()
{
return $this->getProperty("ColumnWidth");
} | Specifies
the width of columns.
@return string | getColumnWidth | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setColumnWidth($value)
{
$this->setProperty("ColumnWidth", $value, true);
} | Specifies
the width of columns.
@var string | setColumnWidth | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getContentTypeId()
{
if (!$this->isPropertyAvailable("ContentTypeId")) {
return null;
}
return $this->getProperty("ContentTypeId");
} | Specifies
the identifier of the content type with
which the view is associated.
@return ContentTypeId | getContentTypeId | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setContentTypeId($value)
{
$this->setProperty("ContentTypeId", $value, true);
} | Specifies
the identifier of the content type with
which the view is associated.
@var ContentTypeId | setContentTypeId | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getCustomFormatter()
{
if (!$this->isPropertyAvailable("CustomFormatter")) {
return null;
}
return $this->getProperty("CustomFormatter");
} | Specifies
the Custom Formatter used for the view.
@return string | getCustomFormatter | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setCustomFormatter($value)
{
$this->setProperty("CustomFormatter", $value, true);
} | Specifies
the Custom Formatter used for the view.
@var string | setCustomFormatter | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getDefaultView()
{
if (!$this->isPropertyAvailable("DefaultView")) {
return null;
}
return $this->getProperty("DefaultView");
} | Specifies
whether the list view is the default
list view.
@return bool | getDefaultView | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setDefaultView($value)
{
$this->setProperty("DefaultView", $value, true);
} | Specifies
whether the list view is the default
list view.
@var bool | setDefaultView | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getDefaultViewForContentType()
{
if (!$this->isPropertyAvailable("DefaultViewForContentType")) {
return null;
}
return $this->getProperty("DefaultViewForContentType");
} | Specifies
whether the list view is the default
list view for the content type
specified by ContentTypeId.
@return bool | getDefaultViewForContentType | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setDefaultViewForContentType($value)
{
$this->setProperty("DefaultViewForContentType", $value, true);
} | Specifies
whether the list view is the default
list view for the content type
specified by ContentTypeId.
@var bool | setDefaultViewForContentType | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getEditorModified()
{
if (!$this->isPropertyAvailable("EditorModified")) {
return null;
}
return $this->getProperty("EditorModified");
} | Specifies
whether the list view was
modified in an editor.
@return bool | getEditorModified | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setEditorModified($value)
{
$this->setProperty("EditorModified", $value, true);
} | Specifies
whether the list view was
modified in an editor.
@var bool | setEditorModified | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getFormats()
{
if (!$this->isPropertyAvailable("Formats")) {
return null;
}
return $this->getProperty("Formats");
} | Specifies
the column and row formatting for the list view.It MUST be
NULL or an XML fragment that
conforms to ViewFormatDefinitions as specified in [MS-WSSCAML]
section 2.3.2.21.
@return string | getFormats | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setFormats($value)
{
$this->setProperty("Formats", $value, true);
} | Specifies
the column and row formatting for the list view.It MUST be
NULL or an XML fragment that
conforms to ViewFormatDefinitions as specified in [MS-WSSCAML]
section 2.3.2.21.
@var string | setFormats | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getHidden()
{
if (!$this->isPropertyAvailable("Hidden")) {
return null;
}
return $this->getProperty("Hidden");
} | Specifies
whether the list view is hidden.
@return bool | getHidden | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setHidden($value)
{
$this->setProperty("Hidden", $value, true);
} | Specifies
whether the list view is hidden.
@var bool | setHidden | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getHtmlSchemaXml()
{
if (!$this->isPropertyAvailable("HtmlSchemaXml")) {
return null;
}
return $this->getProperty("HtmlSchemaXml");
} | Specifies
the XML
document that represents the list view.It MUST
NOT be NULL. It MUST be exactly one XML fragment
conforming to ViewDefinitions as specified in [MS-WSSCAML]
section 2.3.2.16.
@return string | getHtmlSchemaXml | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setHtmlSchemaXml($value)
{
$this->setProperty("HtmlSchemaXml", $value, true);
} | Specifies
the XML
document that represents the list view.It MUST
NOT be NULL. It MUST be exactly one XML fragment
conforming to ViewDefinitions as specified in [MS-WSSCAML]
section 2.3.2.16.
@var string | setHtmlSchemaXml | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getId()
{
if (!$this->isPropertyAvailable("Id")) {
return null;
}
return $this->getProperty("Id");
} | Specifies
the base
view identifier of the list view.It MUST be
an integer encoded as a string. Its value MUST be equal to or greater than 0.
Its value MUST be equal to or less than 255.
@return string | getId | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setId($value)
{
$this->setProperty("Id", $value, true);
} | Specifies
the base
view identifier of the list view.It MUST be
an integer encoded as a string. Its value MUST be equal to or greater than 0.
Its value MUST be equal to or less than 255.
@var string | setId | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getImageUrl()
{
if (!$this->isPropertyAvailable("ImageUrl")) {
return null;
}
return $this->getProperty("ImageUrl");
} | Specifies
the URL
of the image for the list view.It MUST be
a server-relative
URL or an absolute URL.
@return string | getImageUrl | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setImageUrl($value)
{
$this->setProperty("ImageUrl", $value, true);
} | Specifies
the URL
of the image for the list view.It MUST be
a server-relative
URL or an absolute URL.
@var string | setImageUrl | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getIncludeRootFolder()
{
if (!$this->isPropertyAvailable("IncludeRootFolder")) {
return null;
}
return $this->getProperty("IncludeRootFolder");
} | Specifies
whether the current folder is displayed
in the list view.
@return bool | getIncludeRootFolder | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setIncludeRootFolder($value)
{
$this->setProperty("IncludeRootFolder", $value, true);
} | Specifies
whether the current folder is displayed
in the list view.
@var bool | setIncludeRootFolder | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getViewJoins()
{
if (!$this->isPropertyAvailable("ViewJoins")) {
return null;
}
return $this->getProperty("ViewJoins");
} | Specifies
the joins that are used in the list view.It MUST be
NULL or an XML fragment that conforms to ListJoinsDefinition as
specified in [MS-WSSCAML]
section 2.2.2.21.
@return string | getViewJoins | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setViewJoins($value)
{
$this->setProperty("ViewJoins", $value, true);
} | Specifies
the joins that are used in the list view.It MUST be
NULL or an XML fragment that conforms to ListJoinsDefinition as
specified in [MS-WSSCAML]
section 2.2.2.21.
@var string | setViewJoins | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getJSLink()
{
if (!$this->isPropertyAvailable("JSLink")) {
return null;
}
return $this->getProperty("JSLink");
} | Gets the
name of an external ECMAScript ([ECMA-262-1999])
file containing any logic for this list view.
@return string | getJSLink | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setJSLink($value)
{
$this->setProperty("JSLink", $value, true);
} | Gets the
name of an external ECMAScript ([ECMA-262-1999])
file containing any logic for this list view.
@var string | setJSLink | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getListViewXml()
{
if (!$this->isPropertyAvailable("ListViewXml")) {
return null;
}
return $this->getProperty("ListViewXml");
} | Specifies
the View (section 3.2.5.137) XML
that conforms to the ViewDefinition type as defined in [MS-WSSCAML]
section 2.3.2.17.<122>
@return string | getListViewXml | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function setListViewXml($value)
{
$this->setProperty("ListViewXml", $value, true);
} | Specifies
the View (section 3.2.5.137) XML
that conforms to the ViewDefinition type as defined in [MS-WSSCAML]
section 2.3.2.17.<122>
@var string | setListViewXml | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
public function getMethod()
{
if (!$this->isPropertyAvailable("Method")) {
return null;
}
return $this->getProperty("Method");
} | Specifies
the view method for the list view.It MUST be
NULL or an XML document where
the root
element is a valid Method XML fragment as
specified in [MS-WSSCAP]
section 2.2.5.2.
@return string | getMethod | php | vgrem/phpSPO | src/SharePoint/View.php | https://github.com/vgrem/phpSPO/blob/master/src/SharePoint/View.php | MIT |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.