phpdoc blocks
[squirrelmail.git] / class / mime / Language.class.php
1 <?php
2
3 /**
4 * Language.class.php
5 *
6 * Copyright (c) 2003-2005 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This file should contain class needed to handle Language properties in
10 * mime messages. I suspect that it is RFC2231
11 *
12 * @version $Id$
13 * @package squirrelmail
14 * @since 1.3.2
15 */
16
17 /**
18 * Class that can be used to handle language properties in MIME headers.
19 *
20 * @package squirrelmail
21 * @since 1.3.0
22 */
23 class Language {
24 /**
25 * Class constructor
26 * @param mixed $name
27 */
28 function Language($name) {
29 /** @var mixed */
30 $this->name = $name;
31 /**
32 * Language properties
33 * @var array
34 */
35 $this->properties = array();
36 }
37 }
38
39 ?>