X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=class%2Fmime%2FContentType.class.php;h=d44c79f9ccf4fd8baa11a033fea1dbd463087d9a;hp=85f24ab761fe3274d1ee88d8c57444772870cd81;hb=1d6248ce00d0564f0508e7744490f27c30052af0;hpb=76911253eb850bacde3d86c8cb7b4af072e67ebe diff --git a/class/mime/ContentType.class.php b/class/mime/ContentType.class.php index 85f24ab7..d44c79f9 100644 --- a/class/mime/ContentType.class.php +++ b/class/mime/ContentType.class.php @@ -3,19 +3,49 @@ /** * ContentType.class.php * - * Copyright (c) 2003 The SquirrelMail Project Team + * Copyright (c) 2003-2005 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * - * This contains functions needed to handle mime messages. + * This file contains functions needed to handle content type headers + * (rfc2045) in mime messages. * - * $Id$ + * @version $Id$ + * @package squirrelmail + * @subpackage mime + * @since 1.3.2 */ +/** + * Class that handles content-type headers + * Class was named content_type in 1.3.0 and 1.3.1. It is used internally + * by rfc822header class. + * @package squirrelmail + * @subpackage mime + * @since 1.3.2 + */ class ContentType { - var $type0 = 'text', - $type1 = 'plain', - $properties = ''; + /** + * Media type + * @var string + */ + var $type0 = 'text'; + /** + * Media subtype + * @var string + */ + var $type1 = 'plain'; + /** + * Auxiliary header information + * prepared with parseContentType() function in rfc822header class. + * @var array + */ + var $properties = ''; + /** + * Constructor function. + * Prepared type0 and type1 properties + * @param string $type content type string without auxiliary information + */ function ContentType($type) { $pos = strpos($type, '/'); if ($pos > 0) { @@ -28,4 +58,4 @@ class ContentType { } } -?> +?> \ No newline at end of file