Horde_Kolab_Storage_Folder_Type::__construct PHP Метод

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

Constructor.
public __construct ( string $annotation )
$annotation string The folder type annotation value.
    public function __construct($annotation)
    {
        $elements = explode('.', $annotation);
        $this->_type = $elements[0];
        $this->_default = isset($elements[1]) && $elements[1] == 'default';
    }
Horde_Kolab_Storage_Folder_Type