12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * Disposition.class.php
- *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * This contains functions needed to handle mime messages.
- *
- * @version $Id$
- * @package squirrelmail
- */
- /**
- * Undocumented class
- * @package squirrelmail
- */
- class Disposition {
- function Disposition($name) {
- $this->name = $name;
- $this->properties = array();
- }
- function getProperty($par) {
- $value = strtolower($par);
- if (isset($this->properties[$par])) {
- return $this->properties[$par];
- }
- return '';
- }
- }
- ?>
|