Ejemplo n.º 1
0
 /**
  * Returns the waste basket
  * If the wastebasket is set to one backend, return the wastebasket of that backend
  * else return the first waste basket we can find
  *
  * @access public
  * @return string
  */
 function GetWasteBasket()
 {
     ZLog::Write(LOGLEVEL_DEBUG, "Combined->GetWasteBasket()");
     if (isset($this->activeBackend)) {
         if (!$this->activeBackend->GetWasteBasket()) {
             return false;
         } else {
             return $this->activeBackendID . $this->config['delimiter'] . $this->activeBackend->GetWasteBasket();
         }
     }
     return false;
 }