2009-10-11 02:07:27 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* This class acts as a wrapper around the built in DOMDocument class in order to use it to manage a HTML snippet,
|
|
|
|
* rather than a whole document, while still exposing the DOMDocument API.
|
|
|
|
*
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage integration
|
|
|
|
*/
|
|
|
|
class SS_HTMLValue extends ViewableData {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var DOMDocument
|
|
|
|
*/
|
|
|
|
protected $document;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $content
|
|
|
|
*/
|
|
|
|
public function __construct($content = null) {
|
|
|
|
$this->document = new DOMDocument('1.0', 'UTF-8');
|
|
|
|
$this->document->scrictErrorChecking = false;
|
|
|
|
|
|
|
|
$this->setContent($content);
|
|
|
|
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getContent() {
|
|
|
|
// strip the body tags from the output (which are automatically added by DOMDocument)
|
|
|
|
return preg_replace (
|
|
|
|
array (
|
|
|
|
'/^\s*<body[^>]*>/i',
|
|
|
|
'/<\/body[^>]*>\s*$/i'
|
|
|
|
),
|
|
|
|
null,
|
2010-01-21 22:29:56 +01:00
|
|
|
$this->getDocument()->saveXML($this->getDocument()->documentElement->lastChild)
|
2009-10-11 02:07:27 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $content
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function setContent($content) {
|
2009-10-13 03:44:41 +02:00
|
|
|
return @$this->getDocument()->loadHTML(
|
|
|
|
'<html><head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head>' .
|
|
|
|
"<body>$content</body></html>"
|
|
|
|
);
|
2009-10-11 02:07:27 +02:00
|
|
|
}
|
2010-01-21 22:29:56 +01:00
|
|
|
|
2009-10-11 02:07:27 +02:00
|
|
|
/**
|
|
|
|
* @return DOMDocument
|
|
|
|
*/
|
|
|
|
public function getDocument() {
|
|
|
|
return $this->document;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A simple convenience wrapper around DOMDocument::getElementsByTagName().
|
|
|
|
*
|
|
|
|
* @param string $name
|
|
|
|
* @return DOMNodeList
|
|
|
|
*/
|
|
|
|
public function getElementsByTagName($name) {
|
|
|
|
return $this->getDocument()->getElementsByTagName($name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @see HTMLValue::getContent()
|
|
|
|
*/
|
|
|
|
public function forTemplate() {
|
|
|
|
return $this->getContent();
|
|
|
|
}
|
|
|
|
|
2009-10-13 03:44:41 +02:00
|
|
|
}
|