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.
저자: Gunnar Wrobel (wrobel@pardus.de)
상속: implements Horde_Kolab_Storage_Driver
예제 #1
0
파일: Timer.php 프로젝트: raz0rsdge/horde
 /**
  * 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;
 }
예제 #2
0
파일: Log.php 프로젝트: jubinpatel/horde
 /**
  * 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;
 }