* @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()); } }