getNamespace() public method

Retrieve the namespace information for this connection.
public getNamespace ( ) : Horde_Kolab_Storage_Driver_Namespace
return Horde_Kolab_Storage_Driver_Namespace The initialized namespace handler.
Esempio n. 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;
 }
Esempio n. 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;
 }