Language.class.php 821 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * Language.class.php
  4. *
  5. * This file should contain class needed to handle Language properties in
  6. * mime messages. I suspect that it is RFC2231
  7. *
  8. * @copyright &copy; 2003-2007 The SquirrelMail Project Team
  9. * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  10. * @version $Id$
  11. * @package squirrelmail
  12. * @subpackage mime
  13. * @since 1.3.2
  14. */
  15. /**
  16. * Class that can be used to handle language properties in MIME headers.
  17. *
  18. * @package squirrelmail
  19. * @subpackage mime
  20. * @since 1.3.0
  21. */
  22. class Language {
  23. /**
  24. * Class constructor
  25. * @param mixed $name
  26. */
  27. function Language($name) {
  28. /** @var mixed */
  29. $this->name = $name;
  30. /**
  31. * Language properties
  32. * @var array
  33. */
  34. $this->properties = array();
  35. }
  36. }