Path

ez components / documentation / api reference / 2007.2alpha1 / webdav


eZ Components 2007.2alpha1

Webdav: ezcWebdavBackendChange

[ Tutorial ] [ Class tree ] [ Element index ] [ ChangeLog ] [ Credits ]

Interface: ezcWebdavBackendChange

Interface implemented by backends which support request commonly known as change requests, which are: [source]
  • DELETE
  • COPY
  • MOVE

Method Summary

public ezcWebdavResponse copy( $request )
Required method to serve COPY requests.
public ezcWebdavResponse delete( $request )
Required method to serve DELETE requests.
public ezcWebdavResponse move( $request )
Required method to serve MOVE requests.

Methods

copy

Required method to serve COPY requests.
The method receives a ezcWebdavCopyRequest objects containing all relevant information obout the clients request and should either return an error by returning an ezcWebdavErrorResponse object, or any other ezcWebdavResponse objects.

Parameters

Name Type Description
$request ezcWebdavCopyRequest  

delete

Required method to serve DELETE requests.
The method receives a ezcWebdavDeleteRequest objects containing all relevant information obout the clients request and should either return an error by returning an ezcWebdavErrorResponse object, or any other ezcWebdavResponse objects.

Parameters

Name Type Description
$request ezcWebdavDeleteRequest  

move

Required method to serve MOVE requests.
The method receives a ezcWebdavMoveRequest objects containing all relevant information obout the clients request and should either return an error by returning an ezcWebdavErrorResponse object, or any other ezcWebdavResponse objects.

Parameters

Name Type Description
$request ezcWebdavMoveRequest  

Last updated: Mon, 12 Nov 2007