저자: Michael Slusarz (slusarz@horde.org)
상속: implements ArrayAccess, implements Horde_Shutdown_Task
예제 #1
0
파일: Expanded.php 프로젝트: DSNS-LAB/Dmail
 /**
  */
 public function offsetGet($offset)
 {
     switch ($this->_expanded) {
         case self::NO:
             return false;
         case self::YES:
             return true;
         case self::LAST:
             return parent::offsetGet($offset);
     }
 }
예제 #2
0
파일: Poll.php 프로젝트: DSNS-LAB/Dmail
 /**
  */
 public function offsetGet($offset)
 {
     return $this->_data === true ? ($elt = $this->_ftree[$offset]) && !$elt->nonimap && !$elt->container : parent::offsetGet($offset);
 }