getNamespace() 공개 메소드

Retrieve the namespace information for this connection.
public getNamespace ( ) : Horde_Kolab_Storage_Driver_Namespace
리턴 Horde_Kolab_Storage_Driver_Namespace The initialized namespace handler.
예제 #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;
 }