UtcOffset.php 763 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace Sabre\VObject\Property;
  3. /**
  4. * UtcOffset property
  5. *
  6. * This object encodes UTC-OFFSET values.
  7. *
  8. * @copyright Copyright (C) 2007-2014 fruux GmbH. All rights reserved.
  9. * @author Evert Pot (http://evertpot.com/)
  10. * @license http://sabre.io/license/ Modified BSD License
  11. */
  12. class UtcOffset extends Text {
  13. /**
  14. * In case this is a multi-value property. This string will be used as a
  15. * delimiter.
  16. *
  17. * @var string|null
  18. */
  19. public $delimiter = null;
  20. /**
  21. * Returns the type of value.
  22. *
  23. * This corresponds to the VALUE= parameter. Every property also has a
  24. * 'default' valueType.
  25. *
  26. * @return string
  27. */
  28. public function getValueType() {
  29. return "UTC-OFFSET";
  30. }
  31. }