X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=class%2Fmime%2FLanguage.class.php;h=4ced6850d9beb1489d77118102321995778e6b11;hb=47ccfad452e8d345542d09e59112cac317cffed8;hp=3b9011894849ead96bd45e12549ad73899f391bc;hpb=76911253eb850bacde3d86c8cb7b4af072e67ebe;p=squirrelmail.git diff --git a/class/mime/Language.class.php b/class/mime/Language.class.php index 3b901189..4ced6850 100644 --- a/class/mime/Language.class.php +++ b/class/mime/Language.class.php @@ -3,19 +3,38 @@ /** * Language.class.php * - * Copyright (c) 2003 The SquirrelMail Project Team - * Licensed under the GNU GPL. For full terms see the file COPYING. + * This file should contain class needed to handle Language properties in + * mime messages. I suspect that it is RFC2231 * - * This contains functions needed to handle mime messages. - * - * $Id$ + * @copyright © 2003-2006 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) { - $this->name = $name; - $this->properties = array(); + /** @var mixed */ + $this->name = $name; + /** + * Language properties + * @var array + */ + $this->properties = array(); } } -?> +?> \ No newline at end of file