File manager - Edit - /home/premiey/www/wp-content/plugins/ameliabooking/vendor/eluceo/ical/src/Eluceo/iCal/Property/StringValue.php
Back
<?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; } }
| ver. 1.4 |
Github
|
.
| PHP 5.4.45 | Generation time: 0 |
proxy
|
phpinfo
|
Settings