Source for file Disposition.class.php
Documentation is available at Disposition.class.php
* This file contains functions needed to handle content disposition headers
* in mime messages. See RFC 2183.
* @copyright 2003-2020 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: Disposition.class.php 14845 2020-01-07 08:09:34Z pdontthink $
* Class that handles content disposition header
* @todo FIXME: do we have to declare vars ($name and $properties)?
* Constructor (PHP5 style, required in some future version of PHP)
$this->properties =
array();
* Constructor (PHP4 style, kept for compatibility reasons)
self::__construct($name);
* Returns value of content disposition property
* @param string $par content disposition property name
if (isset
($this->properties[$par])) {
return $this->properties[$par];
Documentation generated on Mon, 13 Jan 2020 04:22:24 +0100 by phpDocumentor 1.4.3