summaryrefslogtreecommitdiff
path: root/vendor/eluceo/ical/src/Eluceo/iCal/Property/StringValue.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/eluceo/ical/src/Eluceo/iCal/Property/StringValue.php')
-rw-r--r--vendor/eluceo/ical/src/Eluceo/iCal/Property/StringValue.php61
1 files changed, 61 insertions, 0 deletions
diff --git a/vendor/eluceo/ical/src/Eluceo/iCal/Property/StringValue.php b/vendor/eluceo/ical/src/Eluceo/iCal/Property/StringValue.php
new file mode 100644
index 00000000..4995723b
--- /dev/null
+++ b/vendor/eluceo/ical/src/Eluceo/iCal/Property/StringValue.php
@@ -0,0 +1,61 @@
+<?php
+
+/*
+ * This file is part of the eluceo/iCal package.
+ *
+ * (c) Markus Poerschke <markus@eluceo.de>
+ *
+ * This source file is subject to the MIT license that is bundled
+ * with this source code in the file LICENSE.
+ */
+
+namespace Eluceo\iCal\Property;
+
+use Eluceo\iCal\Util\PropertyValueUtil;
+
+class StringValue implements ValueInterface
+{
+ /**
+ * The value.
+ *
+ * @var string
+ */
+ protected $value;
+
+ public function __construct($value)
+ {
+ $this->value = $value;
+ }
+
+ /**
+ * Return the value of the Property as an escaped string.
+ *
+ * Escape values as per RFC 2445. See http://www.kanzaki.com/docs/ical/text.html
+ *
+ * @return string
+ */
+ public function getEscapedValue()
+ {
+ return PropertyValueUtil::escapeValue((string) $this->value);
+ }
+
+ /**
+ * @param string $value
+ *
+ * @return $this
+ */
+ public function setValue($value)
+ {
+ $this->value = $value;
+
+ return $this;
+ }
+
+ /**
+ * @return string
+ */
+ public function getValue()
+ {
+ return $this->value;
+ }
+}