IMP_Ftree_Prefs::offsetGet PHP Метод

offsetGet() публичный Метод

public offsetGet ( $offset )
    public function offsetGet($offset)
    {
        return isset($this->_data[strval($offset)]);
    }

Usage Example

Пример #1
0
 /**
  */
 public function offsetGet($offset)
 {
     switch ($this->_expanded) {
         case self::NO:
             return false;
         case self::YES:
             return true;
         case self::LAST:
             return parent::offsetGet($offset);
     }
 }
All Usage Examples Of IMP_Ftree_Prefs::offsetGet