PHP Class Baikal\Core\Server

This class sets up the underlying Sabre\DAV\Server object.
Author: Evert Pot (http://evertpot.com/)
Afficher le fichier Open project: jeromeschneider/baikal

Protected Properties

Свойство Type Description
$authRealm string HTTP authentication realm
$authType string "Basic" or "Digest"
$baseUri string baseUri for the sabre/dav server
$enableCalDAV boolean Is CalDAV enabled?
$enableCardDAV boolean is CardDAV enabled?
$pdo PDO Reference to Database object
$server Sabre\DAV\Server The sabre/dav Server object

Méthodes publiques

Méthode Description
__construct ( boolean $enableCalDAV, boolean $enableCardDAV, string $authType, string $authRealm, PDO $pdo, string $baseUri ) Creates the server object.
start ( ) : void Starts processing

Méthodes protégées

Méthode Description
initServer ( ) : void Initializes the server object

Method Details

__construct() public méthode

Creates the server object.
public __construct ( boolean $enableCalDAV, boolean $enableCardDAV, string $authType, string $authRealm, PDO $pdo, string $baseUri )
$enableCalDAV boolean
$enableCardDAV boolean
$authType string
$authRealm string
$pdo PDO
$baseUri string

initServer() protected méthode

Initializes the server object
protected initServer ( ) : void
Résultat void

start() public méthode

Starts processing
public start ( ) : void
Résultat void

Property Details

$authRealm protected_oe property

HTTP authentication realm
protected string $authRealm
Résultat string

$authType protected_oe property

"Basic" or "Digest"
protected string $authType
Résultat string

$baseUri protected_oe property

baseUri for the sabre/dav server
protected string $baseUri
Résultat string

$enableCalDAV protected_oe property

Is CalDAV enabled?
protected bool $enableCalDAV
Résultat boolean

$enableCardDAV protected_oe property

is CardDAV enabled?
protected bool $enableCardDAV
Résultat boolean

$pdo protected_oe property

Reference to Database object
protected PDO $pdo
Résultat PDO

$server protected_oe property

The sabre/dav Server object
protected Server,Sabre\DAV $server
Résultat Sabre\DAV\Server