summary();
* });
*
* execute_query();
*
* $benchmark->tick('Fetched results');
*
* generate_report();
*
* $benchmark->tick('Report generated');
*
* echo $performance;
* ```
*/
class DeferredText implements ValidHtml
{
/** @var callable will return the text that should be rendered */
protected $callback;
/** @var bool */
protected $escaped = false;
/**
* Create a new text node where content creation is deferred until rendering
*
* @param callable $callback Must return the content that should be rendered
*/
public function __construct(callable $callback)
{
$this->callback = $callback;
}
/**
* Create a new text node where content creation is deferred until rendering
*
* @param callable $callback Must return the content that should be rendered
*
* @return static
*/
public static function create(callable $callback)
{
return new static($callback);
}
/**
* Get whether the callback promises that its content is already escaped
*
* @return bool
*/
public function isEscaped()
{
return $this->escaped;
}
/**
* Set whether the callback's content is already escaped
*
* @param bool $escaped
*
* @return $this
*/
public function setEscaped($escaped = true)
{
$this->escaped = $escaped;
return $this;
}
/**
* Render text to HTML when treated like a string
*
* Calls {@link render()} internally in order to render the text to HTML.
* Exceptions will be automatically caught and returned as HTML string as well using {@link Error::render()}.
*
* @return string
*/
public function __toString()
{
try {
return $this->render();
} catch (Exception $e) {
return Error::render($e);
}
}
public function render()
{
$callback = $this->callback;
if ($this->escaped) {
return $callback();
} else {
return Html::escape($callback());
}
}
}