An object of this class represents a WebDAV dead property.
An object of this class is created to represent a dead (in the meaning of unknown) property. While live properties are validated and maintained by the server itself, while dead properties are just stored without any further action.
Source for this file: /Webdav/src/properties/dead.php
ezcWebdavInfrastructureBase | --ezcWebdavProperty | --ezcWebdavDeadProperty
Version: | //autogentag// |
string | read/write |
$content
The content of a dead property. |
From ezcWebdavProperty | |
---|---|
protected |
ezcWebdavProperty::$properties
|
From ezcWebdavInfrastructureBase | |
protected |
ezcWebdavInfrastructureBase::$pluginData
|
public void |
__construct(
$namespace
, $name
, [ $content
= null] )
Creates a new dead property. |
public bool |
hasNoContent(
)
Returns if property has no content. |
From ezcWebdavProperty | |
---|---|
public void |
ezcWebdavProperty::__construct()
Creates a new property object. |
public void |
ezcWebdavProperty::clear()
Remove all contents from a property. |
protected void |
ezcWebdavProperty::hasError()
Indicates that a property has a validation error. |
public abstract bool |
ezcWebdavProperty::hasNoContent()
Check if property has no content. |
public void |
ezcWebdavProperty::__clone()
Clones a property deeply. |
From ezcWebdavInfrastructureBase | |
public mixed |
ezcWebdavInfrastructureBase::getPluginData()
Retrieves plugin data from the storage. |
public bool |
ezcWebdavInfrastructureBase::hasPluginData()
Returns if plugin data is available in the storage. |
public void |
ezcWebdavInfrastructureBase::removePluginData()
Removes plugin data from the storage. |
public void |
ezcWebdavInfrastructureBase::setPluginData()
Sets plugin data in the storage. |
Creates a new dead property.
Creates a new dead property in the given $namespace with the given $name and optionally containing $content.
Name | Type | Description |
---|---|---|
$namespace |
string | |
$name |
string | |
$content |
string |
Method | Description |
---|---|
ezcWebdavProperty::__construct() |
Creates a new property object. |
Returns if property has no content.
Returns true, if the property has no content stored.
Method | Description |
---|---|
ezcWebdavProperty::hasNoContent() |
Check if property has no content. |