blob: a8aa60b8600f11f4b58eb8abe5150fbf71fa6d62 [file] [log] [blame]
<?php
/**
* File containing the ezcWebdavLockDiscoveryProperty class.
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
* @package Webdav
* @version //autogentag//
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
*
* @access private
*/
/**
* An object of this class represents the Webdav property <lockdiscovery>.
*
* @property ArrayObject(ezcWebdavLockDiscoveryPropertyActiveLock) $activeLock
* Lock information according to <activelock> elements.
*
* @version //autogentag//
* @package Webdav
*
* @access private
*/
class ezcWebdavLockDiscoveryProperty extends ezcWebdavLiveProperty
{
/**
* Creates a new ezcWebdavLockDiscoveryProperty.
*
* The given array must contain instances of {@link
* ezcWebdavLockDiscoveryPropertyActiveLock}.
*
* @param ArrayObject(ezcWebdavLockDiscoveryPropertyActiveLock) $activeLock
*/
public function __construct( ArrayObject $activeLock = null )
{
parent::__construct( 'lockdiscovery' );
$this->activeLock = ( $activeLock === null ? new ArrayObject() : $activeLock );
}
/**
* Sets a property.
*
* This method is called when an property is to be set.
*
* @param string $propertyName The name of the property to set.
* @param mixed $propertyValue The property value.
* @return void
* @ignore
*
* @throws ezcBasePropertyNotFoundException
* if the given property does not exist.
* @throws ezcBaseValueException
* if the value to be assigned to a property is invalid.
* @throws ezcBasePropertyPermissionException
* if the property to be set is a read-only property.
*/
public function __set( $propertyName, $propertyValue )
{
switch ( $propertyName )
{
case 'activeLock':
if ( !is_object( $propertyValue ) || !( $propertyValue instanceof ArrayObject ) )
{
return $this->hasError(
$propertyName,
$propertyValue,
'ArrayObject(ezcWebdavLockDiscoveryPropertyActiveLock)'
);
}
$this->properties[$propertyName] = $propertyValue;
break;
default:
parent::__set( $propertyName, $propertyValue );
}
}
/**
* Returns if property has no content.
*
* Returns true, if the property has no content stored.
*
* @return bool
*/
public function hasNoContent()
{
return count( $this->properties['activeLock'] ) === 0;
}
/**
* Remove all contents from a property.
*
* Clear a property, so that it will be recognized as empty later.
*
* @return void
*/
public function clear()
{
$this->activeLock = new ArrayObject();
}
/**
* Clones deep.
*
* @return void
*/
public function __clone()
{
$activeLocks = $this->properties['activeLock'];
$this->properties['activeLock'] = new ArrayObject();
foreach ( $activeLocks as $activeLock )
{
$this->properties['activeLock'][] = clone $activeLock;
}
}
}
?>