Your IP : 3.128.206.66


Current Path : /var/www/www-root/data/www.catalog.monolith-realty.ru/bitrix/modules/main/lib/web/dom/
Upload File :
Current File : /var/www/www-root/data/www.catalog.monolith-realty.ru/bitrix/modules/main/lib/web/dom/comment.php

<?php
namespace Bitrix\Main\Web\DOM;

class Comment extends Node
{
	public function __construct($comment)
	{
		$this->init();
		$this->nodeType = self::COMMENT_NODE;

		$this->nodeValue = $comment;
		$this->nodeName = '#comment';
	}

	public function setNodeValue($comment)
	{
		$this->nodeValue = $comment;
	}

	public function getTextContent()
	{
		return $this->nodeValue;
	}
}