1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * Language.class.php
- *
- * This file should contain class needed to handle Language properties in
- * mime messages. I suspect that it is RFC2231
- *
- * @copyright © 2003-2007 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id$
- * @package squirrelmail
- * @subpackage mime
- * @since 1.3.2
- */
- /**
- * Class that can be used to handle language properties in MIME headers.
- *
- * @package squirrelmail
- * @subpackage mime
- * @since 1.3.0
- */
- class Language {
- /**
- * Class constructor
- * @param mixed $name
- */
- function Language($name) {
- /** @var mixed */
- $this->name = $name;
- /**
- * Language properties
- * @var array
- */
- $this->properties = array();
- }
- }
|