phpdoc blocks
[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
8654383d 14 * @since 1.3.2
19d470aa 15 */
16
2b646597 17/**
8654383d 18 * Class that can be used to handle language properties in MIME headers.
19 *
2b646597 20 * @package squirrelmail
8654383d 21 * @since 1.3.0
2b646597 22 */
19d470aa 23class Language {
8654383d 24 /**
25 * Class constructor
26 * @param mixed $name
27 */
19d470aa 28 function Language($name) {
8654383d 29 /** @var mixed */
30 $this->name = $name;
31 /**
32 * Language properties
33 * @var array
34 */
35 $this->properties = array();
19d470aa 36 }
37}
38
91e0dccc 39?>