adding index files in order to prevent directory listing.
[squirrelmail.git] / class / mime / Language.class.php
index 6f39e3d7834e7f2af6ca1700e9a07d7de72ebeec..7aae1f52695b4ad916e21c88fb66d4f9533a1d92 100644 (file)
@@ -3,24 +3,39 @@
 /**
  * Language.class.php
  *
 /**
  * Language.class.php
  *
- * Copyright (c) 2003-2004 The SquirrelMail Project Team
+ * Copyright (c) 2003-2005 The SquirrelMail Project Team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
- * This contains functions needed to handle mime messages.
+ * This file should contain class needed to handle Language properties in 
+ * mime messages. I suspect that it is RFC2231
  *
  * @version $Id$
  * @package squirrelmail
  *
  * @version $Id$
  * @package squirrelmail
+ * @subpackage mime
+ * @since 1.3.2
  */
 
 /**
  */
 
 /**
- * Undocumented class
+ * Class that can be used to handle language properties in MIME headers.
+ *
  * @package squirrelmail
  * @package squirrelmail
+ * @subpackage mime
+ * @since 1.3.0
  */
 class Language {
  */
 class Language {
+    /**
+     * Class constructor
+     * @param mixed $name
+     */
     function Language($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