adding index files in order to prevent directory listing.
[squirrelmail.git] / class / mime / Language.class.php
... / ...
CommitLineData
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 * @subpackage mime
15 * @since 1.3.2
16 */
17
18/**
19 * Class that can be used to handle language properties in MIME headers.
20 *
21 * @package squirrelmail
22 * @subpackage mime
23 * @since 1.3.0
24 */
25class Language {
26 /**
27 * Class constructor
28 * @param mixed $name
29 */
30 function Language($name) {
31 /** @var mixed */
32 $this->name = $name;
33 /**
34 * Language properties
35 * @var array
36 */
37 $this->properties = array();
38 }
39}
40
41?>