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