Copyright 2010-2016 Horde LLC (http://www.horde.org/) See the enclosed file COPYING for license information (LGPL). If you did not receive this file, see http://www.horde.org/licenses/lgpl21.
Author: Gunnar Wrobel (wrobel@pardus.de)
Inheritance: implements Horde_Kolab_Storage_Driver
Example #1
0
 /**
  * Retrieve the namespace information for this connection.
  *
  * @return Horde_Kolab_Storage_Driver_Namespace The initialized namespace handler.
  */
 public function getNamespace()
 {
     $this->_timer->push();
     $result = parent::getNamespace();
     $this->_logger->debug(sprintf('REQUEST OUT IMAP: %s ms [getNamespace]', floor($this->_timer->pop() * 1000)));
     return $result;
 }
Example #2
0
 /**
  * Retrieve the namespace information for this connection.
  *
  * @return Horde_Kolab_Storage_Driver_Namespace The initialized namespace handler.
  */
 public function getNamespace()
 {
     $this->_logger->debug(sprintf('Driver "%s": Retrieving namespaces.', $this->getDriverName()));
     $result = parent::getNamespace();
     $this->_logger->debug(sprintf('Driver "%s": Retrieved namespaces [%s].', $this->getDriverName(), (string) $result));
     return $result;
 }