47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* The default calendars handler.
|
|
*
|
|
* See the enclosed file COPYING for license information (GPL). If you
|
|
* did not receive this file, see http://www.horde.org/licenses/gpl.
|
|
*
|
|
* @author Gunnar Wrobel <wrobel@pardus.de>
|
|
* @package Kronolith
|
|
*/
|
|
class Kronolith_Calendars_Default extends Kronolith_Calendars_Base
|
|
{
|
|
/**
|
|
* The current identity.
|
|
*
|
|
* @var Horde_Prefs_Identity
|
|
*/
|
|
private $_identity;
|
|
|
|
/**
|
|
* Constructor.
|
|
*
|
|
* @param Horde_Share_Base $shares The share backend.
|
|
* @param string $user The current user.
|
|
* @param array $params Additional parameters.
|
|
*/
|
|
public function __construct($shares, $user, $params)
|
|
{
|
|
if (!isset($params['identity'])) {
|
|
throw new BadMethodCallException('This calendars handler needs an "identity" parameter!');
|
|
} else {
|
|
$this->_identity = $params['identity'];
|
|
unset($params['identity']);
|
|
}
|
|
parent::__construct($shares, $user, $params);
|
|
}
|
|
|
|
/**
|
|
* Return the name of the default share.
|
|
*
|
|
* @return string The name of a default share.
|
|
*/
|
|
protected function _getDefaultShareName()
|
|
{
|
|
return sprintf(_("Calendar of %s"), $this->_identity->getName());
|
|
}
|
|
} |