Home
last modified time | relevance | path

Searched refs:rawFieldContent (Results 1 – 1 of 1) sorted by path

/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Element/
H A DFeedHtmlField.php16 protected $rawFieldContent; variable in FeedHtmlField
26 * @param string $parFieldContent if given, sets the rawFieldContent property
31 $this->rawFieldContent = $parFieldContent;
43 // - valid html in $rawFieldContent and we enclose in CDATA tags
45 if (!$this->rawFieldContent) {
48 $result = "<![CDATA[".$this->rawFieldContent."]]>";
51 $result = FeedCreator::iTrunc(htmlspecialchars($this->rawFieldContent), $this->truncSize);
53 $result = htmlspecialchars($this->rawFieldContent);